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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Toolbox for Google Play Store™",
  "version": "3.0.1",
  "author": "APKMirror",
  "description": "Enhances the Google Play Store™ with various features.",
  "action": {},
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "*://play.google.com/*",
    "*://www.apkmirror.com/*"
  ],
  "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": [
    {
      "resources": [
        "settings.html",
        "img/*"
      ],
      "matches": [
        "https://play.google.com/*"
      ]
    }
  ]
}