First commit

This commit is contained in:
2026-03-09 10:26:37 +01:00
commit 2dd4306439
5 changed files with 570 additions and 0 deletions

20
manifest.json Normal file
View File

@@ -0,0 +1,20 @@
{
"manifest_version": 3,
"name": "DNSSEC Check",
"version": "1.0",
"description": "Controleer of een website DNSSEC gebruikt. Groen schild = DNSSEC beveiligd, Rood schild = Geen DNSSEC.",
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"https://dns.google/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "DNSSEC Check"
}
}