Inspect and view changes in Chinese Popup 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
{
"manifest_version": 3,
"name": "Chinese Popup Dictionary Mandarin & Cantonese",
"short_name": "Chinese Dictionary",
"version": "2.0.4",
"author": "Michal Tusnio",
"homepage_url": "https://github.com/mtusnio/chinesedict",
"description": "Dual Mandarin & Cantonese (Jyutping) popup dictionary for those learning one or both",
"icons": {
"16": "images/logo-16x16.png",
"48": "images/logo-48x48.png",
"128": "images/logo-128x128.png",
"192": "images/logo-192x192.png",
"512": "images/logo-512x512.png"
},
"action": {
"default_icon": "images/logo-48x48.png",
"default_title": "Chinese Popup Dictionary"
},
"background": {
"type": "module",
"scripts": [
"worker.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery-3.3.1.min.js",
"js/zhuyin.js",
"dict_content.js"
],
"css": [
"css/content.css"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"host_permissions": [
"https://*/*",
"http://*/*"
],
"permissions": [
"contextMenus",
"tabs",
"storage",
"clipboardWrite",
"scripting"
],
"commands": {
"_execute_action": {
"description": "Enable/Disable Dictionary"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{1bf9c257-5c1b-4a42-b67c-649baacfa1f3}"
}
}
}