Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "0.1.0",
"default_locale": "tr",
"action": {
"default_title": "Play Store Country Switcher",
"default_popup": "src\/popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/play.google.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/play.google.com\/*"
],
"js": [
"src\/shared\/utils.js",
"src\/content\/content.js"
],
"css": [
"src\/content\/content.css"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "src\/background\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"src\/data\/countries.json",
"src\/content\/content.css",
"assets\/icons\/icon16.png",
"assets\/icons\/icon48.png",
"assets\/icons\/icon128.png"
],
"matches": [
"https:\/\/play.google.com\/*"
]
}
]
}