Inspect and view changes in Google Translate Tool source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"scripts": [
"code/common.js",
"code/html.js",
"code/import.js",
"code/services.js",
"code/pref.js"
]
},
"browser_action": {
"default_icon": {
"19": "icons/icon.png",
"38": "icons/icon.png"
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"code/inline.js",
"code/smart-select.js",
"code/yield.js",
"code/learning.js",
"code/translate.js",
"code/common.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"default_locale": "en",
"description": "Google Translate Tool",
"icons": {
"128": "icons/icon.png"
},
"manifest_version": 2,
"name": "Google Translate Tool",
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*",
"storage",
"unlimitedStorage",
"activeTab",
"contextMenus",
"notifications",
"cookies",
"webNavigation"
],
"version": "1.0",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}