Inspect and view changes in Browserabdruck - Durchblickt 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",
"version": "0.4",
"manifest_version": 3,
"short_name": "Browserabdruck - Durchblickt",
"name": "Browserabdruck - Durchblickt",
"background": {
"service_worker": "lib/background-loader.js"
},
"author": "Lukas Schmidt",
"permissions": [
"tabs",
"webNavigation"
],
"host_permissions": [
"<all_urls>"
],
"description": "Nimm deine digitale Souveränität selbst in die Hand, indem dir transparent Tracking Methoden angezeigt werden.",
"action": {
"default_popup": "/data/popup/popup.html",
"default_title": "Browserabdruck - Durchblickt Popup öffnen",
"show_matches": [
"<all_urls>"
],
"default_icon": {
"96": "data/icons/96.png",
"128": "data/icons/128.png"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*/*"
],
"match_about_blank": true,
"run_at": "document_start",
"js": [
"lib/browser-polyfill.js",
"data/content_script/inject.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"data/content_script/injectTest.js",
"data/content_script/handleMessages.js",
"data/content_script/features/fingerprinting/canvas-fingerprint.js",
"data/content_script/features/fingerprinting/webgl-fingerprint.js",
"data/content_script/features/fingerprinting/audio-fingerprint.js",
"data/content_script/features/fingerprinting/getContext-type.js",
"data/content_script/features/geolocation.js",
"data/content_script/features/battery.js",
"data/content_script/features/sensors.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"96": "data/icons/96-complete.png",
"128": "data/icons/128-complete.png"
}
}