Toolbox for Google Play Store™

Toolbox for Google Play Store™

Enhances the Google Play Store™ with various features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Toolbox for Google Play Store™",
  "version": "3.0.1",
  "author": "APKMirror",
  "description": "Enhances the Google Play Store™ with various features.",
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_title": "Toolbox for Google Play Store™"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "*://play.google.com/*",
    "*://www.apkmirror.com/*",
    "storage",
    "cookies"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{f7e00fda-62e6-4361-8450-a335408e1efe}"
    },
    "gecko_android": {
      "id": "{f7e00fda-62e6-4361-8450-a335408e1efe}"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://play.google.com/*"
      ],
      "js": [
        "js/popper.min.js",
        "js/tippy-bundle.min.js",
        "js/regions.js",
        "js/toolbox.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "web_accessible_resources": [
    "settings.html",
    "img/*"
  ]
}