Enhances your browsing experience by offering text translation by simply right-clicking anywhere within the browser.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"action": {
"default_icon": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"default_title": "Choose All Languages"
},
"background": {
"service_worker": "sw.js"
},
"description": "Enhances your browsing experience by offering text translation by simply right-clicking anywhere within the browser.",
"homepage_url": "https://choosealllanguages.com/",
"icons": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"manifest_version": 3,
"name": "Choose All Languages",
"options_ui": {
"open_in_tab": true,
"page": "/options/options.html"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"performance.js"
]
}
],
"permissions": [
"activeTab",
"storage",
"contextMenus",
"webRequest",
"webNavigation"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"version": "1.0.0"
}