Inspect and view changes in 侧边翻译 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
{
"applications": {
"gecko": {
"id": "nickyfeng2@edgetranslate.com",
"strict_min_version": "60.0"
}
},
"background": {
"scripts": [
"js/theft.js",
"./background/background.js"
]
},
"browser_action": {
"default_icon": {
"16": "icon/icon16.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"default_popup": "./popup/popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Q"
}
},
"change_language_setting": {
"description": "__MSG_ChangeLanguageSetting__"
},
"change_mutual_translate": {
"description": "__MSG_MutualTranslation__"
},
"close_result_frame": {
"description": "__MSG_CloseResultFrame__",
"suggested_key": {
"default": "Alt+C"
}
},
"copy_result": {
"description": "__MSG_CopyResult__"
},
"exchange_source_target_lang": {
"description": "__MSG_ExchangeSourceAndTargetLanguage__",
"suggested_key": {
"default": "Alt+S"
}
},
"fix_result_frame": {
"description": "__MSG_FixResultFrame__",
"suggested_key": {
"default": "Alt+X"
}
},
"pronounce_original": {
"description": "__MSG_PronounceOriginal__"
},
"pronounce_selected": {
"description": "__MSG_PronounceSelected__"
},
"pronounce_translated": {
"description": "__MSG_PronounceTranslated__"
},
"translate_selected": {
"description": "__MSG_TranslateSelectedText__"
}
},
"content_scripts": [
{
"js": [
"./content/display/display.js"
],
"matches": [
"<all_urls>"
]
},
{
"all_frames": true,
"css": [
"./content/select/select.css"
],
"js": [
"./content/select/select.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
},
{
"js": [
"./content/banner_controller.js"
],
"matches": [
"<all_urls>"
]
},
{
"all_frames": true,
"js": [
"./content/deepl_injector.js"
],
"matches": [
"*://*.deepl.com/*"
]
},
{
"all_frames": true,
"js": [
"js/import0.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"default_locale": "zh_CN",
"description": "__MSG_Description__",
"icons": {
"16": "icon/icon16.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"manifest_version": 2,
"name": "__MSG_AppName__",
"options_ui": {
"chrome_style": false,
"open_in_tab": true,
"page": "./options/options.html"
},
"permissions": [
"notifications",
"contextMenus",
"storage",
"cookies",
"tabs",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"version": "2.4.2",
"web_accessible_resources": [
"/**"
]
}