Feature Graphic Downloader for Play Store

Feature Graphic Downloader for Play Store

Free tool to download the App preview video and Screenshots from Google Play Store product pages, improve download conversion rate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "short_name": "__MSG_appShortName__",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "__MSG_appDesc__",
    "default_icon": {
      "16": "icon/icon16.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "./manifest.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://play.google.com/store/apps/details*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "matches": [
        "https://play.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}