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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "簡体字中国語文形態素解析",
"description": "拡張機能のアイコンをクリックするとWebページに含まれる簡体字で書かれている中国語を形態素解析して表示する。",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16": "icon/icon16.png",
"32": "icon/icon32.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_title": "簡体字中国語文形態素解析"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"tsv/conversion_table_parts_of_speech.tsv"
],
"matches": [
"<all_urls>"
]
}
]
}