Inspect and view changes in Huahua: Chinese Popup Dict 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
{
"manifest_version": 2,
"name": "Huahua: Chinese-English Dictionary",
"short_name": "Huahua",
"version": "1.1",
"author": "Richard Nixon",
"homepage_url": "https://github.com/ohnekopf/zhongwen",
"description": "Great tool for learning Chinese. Includes links to Chinese Grammar Wiki. Supports adding words to Skritter.",
"icons": {
"16": "images/huahua16.png",
"48": "images/huahua48.png",
"128": "images/huahua.png"
},
"browser_action": {
"default_icon": "images/huahua48.png",
"default_title": "Huahua Chinese Popup Dictionary"
},
"browser_specific_settings": {
"gecko": {
"id": "huahua@ohnekopf.com"
}
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery-3.3.1.min.js",
"js/zhuyin.js",
"content.js"
],
"css": [
"css/content.css"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"contextMenus",
"clipboardWrite",
"tabs"
],
"commands": {
"_execute_browser_action": {
"description": "Enable/Disable Huahua"
}
},
"web_accessible_resources": [
"css/*",
"js/*",
"images/*"
]
}