Scans websites against the Scam Takedown Task Force database and warns you if a site is in our Database
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Scam Takedown Task Force Site Scanner",
"version": "0.20",
"description": "Scans websites against the Scam Takedown Task Force database and warns you if a site is in our Database",
"icons": {
"128": "icons/STDTF.png"
},
"host_permissions": [
"*://scamtdtf.com/*"
],
"action": {
"default_icon": "icons/STDTF.png",
"theme_icons": [
{
"light": "icons/STDTF.png",
"dark": "icons/STDTF.png",
"size": 128
}
],
"default_title": "Scam Takedown Task Force"
},
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_scripts/warningkeys.js",
"content_scripts/styles.js",
"content_scripts/chip.js",
"content_scripts/sidebar.js",
"content_scripts/banner.js",
"content_scripts/sidebutton.js",
"content_scripts/sitecheck.js",
"content_scripts/main.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}