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",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content-script.js"
],
"css": [
"css/style.css"
]
}
],
"name": "リンクが逃げる拡張機能",
"description": "クリックするとリンクが動き出します。サイトを訪れるたびにそのサイトのリンクの動きが速くなります。5回サイトを訪れると速さがリセットされます。ポップアップからすべてのリンクの速さをリセットすることができます",
"version": "1.0.1",
"manifest_version": 3,
"action": {
"default_popup": "../html/popup.html"
},
"icons": {
"16": "/images/logo.png",
"32": "/images/logo@2x.png",
"48": "/images/logo@3x.png",
"128": "/images/logo@8x.png"
},
"permissions": [
"storage"
]
}