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 Translation Assistant",
"description": "Auto-translate and fix Google Play Console store listing translations that exceed character limits.",
"version": "1.1.2",
"minimum_chrome_version": "114",
"action": {
"default_title": "Play Console Translation Assistant"
},
"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-translation-assistant.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-translation-assistant.vercel.app\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"overview\/overviewController.js",
"overview\/autoScrollLanguages.js",
"overview\/getLanguageQueue.js",
"automation\/dialogController.js",
"automation\/languageRunner.js",
"automation\/applyPassRunner.js",
"storage\/languageStore.js",
"storage\/rewriteJobStore.js",
"storage\/rewriteResultStore.js",
"storage\/approvedRewriteStore.js",
"extract\/extractFields.js",
"extract\/parseCounter.js",
"extract\/types.js",
"utils\/uuid.js",
"utils\/getPlayConsoleFrame.js",
"utils\/detectTranslationContext.js",
"apply\/applyRewrites.js",
"ui\/review.html",
"ui\/review.css",
"ui\/review.js",
"ui\/uiCopy.js"
],
"matches": [
"https:\/\/play.google.com\/*"
]
}
]
}