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": "Play Console Pricing Adjuster",
"description": "Automatically adjust global Google Play prices using Purchasing Power Parity.",
"version": "1.1.0",
"minimum_chrome_version": "114",
"action": {
"default_title": "Play Console Pricing Adjuster"
},
"icons": {
"16": "icons\/logo-16.png",
"32": "icons\/logo-32.png",
"48": "icons\/logo-48.png",
"128": "icons\/logo-128.png"
},
"permissions": [
"sidePanel",
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/play.google.com\/console\/*",
"https:\/\/play-console-pricing-adjuster.vercel.app\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"side_panel": {
"default_path": "ui\/review.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/play.google.com\/console\/*",
"http:\/\/localhost:3000\/*",
"https:\/\/play-console-pricing-adjuster.vercel.app\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"data\/countries.js",
"data\/billingCurrency.js",
"automation\/*.js",
"automation\/utils\/*.js",
"utils\/getPlayConsoleFrame.js",
"utils\/detectPricingContext.js",
"ui\/review.html",
"ui\/review.css",
"ui\/review.js",
"ui\/uiCopy.js"
],
"matches": [
"https:\/\/play.google.com\/*"
]
}
]
}