Inspect and view changes in Clean-Spam-Link-Tweet 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": "Clean-Spam-Link-Tweet",
"version": "1.9.8.6",
"manifest_version": 3,
"description": "ツイート(返信)から悪質なリンクが記載されたツイートを可視化してナイト系スパム等のリンクを踏む事を阻止します。",
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"web_accessible_resources": [
{
"resources": [
"cslt_tweet_ctrl.js",
"filter.json",
"imp_filter.json",
"report_icon.svg",
"report_fail_icon.svg"
],
"matches": [
"https://twitter.com/*",
"https://x.com/*",
"https://t.co/*",
"https://cdn.jsdelivr.net/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"cookies"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://x.com/*"
],
"js": [
"content.js"
],
"all_frames": true
}
]
}