Privacy Inspector by Vaagan solutions inspects the ad trackers behaviour and reports to the user.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_appName__",
"version": "1.5",
"description": "__MSG_appDesc__",
"default_locale": "en",
"permissions": [
"tabs",
"storage",
"cookies",
"scripting",
"activeTab",
"declarativeNetRequest",
"webRequest",
"webNavigation"
],
"icons": {
"48": "./icons/icon-48.png",
"64": "./icons/icon-64.png"
},
"content_scripts": [
{
"js": [
"jquery-3.6.4.min.js",
"yt_blocks.js",
"content.js"
],
"run_at": "document_end",
"matches": [
"https://*/*",
"http://*/*"
],
"exclude_matches": [
"*://*.facebook.com/ads/*",
"*://business.facebook.com/ads/*",
"*://www.facebook.com/*"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"/js/document_start.js"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "Popup.html",
"default_title": "Privacy Inspector"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"manifest_version": 3,
"web_accessible_resources": [
{
"resources": [
"/js/simple_panel_inject_script.js",
"/js/simple_popup_inject_script.js"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}