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": "Swift Translator Pro - Select & Translate",
"version": "1.0.2",
"description": "Instantly translate selected text with keyboard shortcuts. Supports 10+ languages, webpage translation, and text-to-speech.",
"permissions": [
"activeTab",
"storage",
"contextMenus",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"commands": {
"translate-selection": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Translate selected text"
},
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+T"
},
"description": "Open translator popup"
}
}
}