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",
"manifest_version": 3,
"name": "ナマズ字幕",
"version": "2.1.7",
"description": "Google翻訳の入力と翻訳結果を抽出して装飾を施して別ウィンドウに表示する拡張機能。配信ソフトの字幕として利用可能。",
"permissions": [
"activeTab",
"storage",
"windows"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "ナマズ字幕"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https://translate.google.com/*",
"https://translate.google.co.jp/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"window.html",
"window.js",
"styles.css"
],
"matches": [
"<all_urls>"
]
}
]
}