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": "App Store Country Switcher",
"description": "Open any App Store app page in multiple country storefronts with one click and a customizable country list.",
"version": "0.1.0",
"permissions": [
"storage",
"tabs",
"sidePanel"
],
"host_permissions": [
"https:\/\/apps.apple.com\/*"
],
"background": {
"service_worker": "background\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/apps.apple.com\/*"
],
"js": [
"content\/content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_title": "App Store Multi-Country",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"side_panel": {
"default_path": "popup\/popup.html"
},
"icons": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"data\/*"
],
"matches": [
"https:\/\/apps.apple.com\/*",
"chrome-extension:\/\/*\/*"
]
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; style-src 'self'; img-src 'self' data: https:\/\/apps.apple.com; connect-src 'self'; object-src 'none'; frame-ancestors 'none'"
}
}