Country Switcher for Google Play

Country Switcher for Google Play

Easily switch country and language in Google Play

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Country Switcher for Google Play",
  "version": "1.0.1",
  "description": "Easily switch country and language in Google Play",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.google.com/store*"
      ],
      "css": [
        "ext.css"
      ],
      "js": [
        "variables.js",
        "languages.js",
        "countries.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}