Inspect and view changes in Translate for Chrome -Translator, Dictionary 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.0.3",
"icons": {
"16": "helpers/icons/icon280.png",
"48": "helpers/icons/icon280.png",
"128": "helpers/icons/icon280.png",
"256": "helpers/icons/icon280.png"
},
"action": {
"default_popup": "popupView/html/popup.html",
"default_icon": "helpers/icons/icon280.png",
"default_title": "Translator"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"contextMenus",
"storage",
"tabs"
],
"background": {
"service_worker": "js/bg.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/libs/purify.min.js",
"js/libs/mustache.min.js",
"js/libs/jquery-3.4.1.min.js",
"js/locales.js",
"js/browser.js",
"js/piwikHelper.js",
"js/localCache.js",
"js/translateContent.js",
"js/translate.js",
"js/libs/jquery-ui.min.js",
"js/libs/jquery.btnswitch.js",
"popupView/js/smallTranslateHelper.js",
"popupView/js/overlayHelper.js",
"popupView/js/csHelper.js",
"js/content.js"
],
"css": [
"helpers/css/share-modal.css",
"helpers/css/main.css",
"helpers/css/jquery.btnswitch.css",
"helpers/css/jquery-ui.min.css",
"helpers/css/frame-main-small.css",
"helpers/css/frame-main.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"helpers/icons/*.svg",
"helpers/icons/*.png",
"helpers/icons/*.gif",
"helpers/icons/flags/*.png",
"helpers/icons/icon280.png",
"popupView/*.html",
"popupView/*.html/Scripts/iframeResizer.contentWindow.min.js",
"popupView/translate.html/Scripts/iframeResizer.contentWindow.min.js",
"popupView/data/languagesData.json",
"popupView/data/allLocalesData.json",
"popupView/data/supportedLanguagesData.json"
],
"matches": [
"<all_urls>"
]
}
]
}