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": "自動タグ削除",
"version": "1.1.0",
"description": "WEBサイト上の邪魔なボタン、文字表示を削除する拡張可能なツール",
"manifest_version": 3,
"permissions": [
"storage"
],
"icons": {
"32": "icon/icon32.png",
"128": "icon/icon128.png"
},
"action": {
"default_icon": {
"32": "icon/icon32.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/storage.js",
"js/content.js"
]
}
]
}