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": "SmartPricing - App Store Price Localization",
"version": "0.1.2",
"description": "Automatically set fair prices per country in App Store Connect & Google Play",
"permissions": [
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"https:\/\/appstoreconnect.apple.com\/*",
"https:\/\/play.google.com\/console\/*",
"https:\/\/api.frankfurter.app\/*"
],
"icons": {
"16": "assets\/logo\/smart_pricing_logo.png",
"48": "assets\/logo\/smart_pricing_logo.png",
"128": "assets\/logo\/smart_pricing_logo.png"
},
"action": {
"default_title": "SmartPricing",
"default_icon": {
"16": "assets\/logo\/smart_pricing_logo.png",
"48": "assets\/logo\/smart_pricing_logo.png",
"128": "assets\/logo\/smart_pricing_logo.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/appstoreconnect.apple.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/play.google.com\/console\/*"
],
"js": [
"content_play_store.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/**\/*"
],
"matches": [
"https:\/\/appstoreconnect.apple.com\/*"
]
},
{
"resources": [
"assets\/**\/*"
],
"matches": [
"https:\/\/play.google.com\/*"
]
}
]
}