This extension checks all the bitcoin addresses if they are a scam. Also, you can check a wallet using the extension form.
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": 2,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.0",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"fix.css"
]
}
],
"browser_action": {
"default_title": "__MSG_appName__",
"default_icon": "icon.png",
"default_popup": "index.html"
},
"permissions": [
"tabs",
"<all_urls>",
"activeTab",
"scripting"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}