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": "2.2",
"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": "簡体字→日本漢字"
},
"permissions": [
"activeTab",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"tsv/conversion_table_simplified_kanji_1.tsv",
"tsv/conversion_table_simplified_kanji_2.tsv",
"tsv/conversion_table_simplified_kanji_3.tsv",
"tsv/conversion_table_simplified_kanji_4.tsv"
],
"matches": [
"<all_urls>"
]
}
]
}