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
{
"name": "百度划词翻译",
"description": "百度划词翻译,结果显示在划词后的右键菜单上,点击菜单可跳转到百度翻译页面。当翻译出错或超过 300 字,右键菜单显示“跳转到百度翻译”。",
"icons": {
"48": "translate48.png",
"96": "translate96.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
],
"browser_action": {
"default_title": "百度划词翻译",
"default_popup": "options.html"
},
"version": "2.2",
"manifest_version": 2,
"permissions": [
"contextMenus",
"https://fanyi.baidu.com/transapi/*",
"storage"
]
}