LinkShield helps you recognize dangerous websites. Never share sensitive information with unknown websites.
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": "__MSG_extName__",
"version": "4.4",
"description": "__MSG_extDescription__",
"default_locale": "nl",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"notifications",
"alarms",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"config.js",
"content.js"
]
}
],
"action": {
"default_popup": "dynamic.html",
"default_icon": {
"16": "icons/green-circle-16.png",
"48": "icons/green-circle-48.png",
"128": "icons/green-circle-128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"trustedIframes.json",
"TrustedDomains.json",
"trustedScripts.json"
],
"matches": [
"<all_urls>"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}