ArchShield: Safe Search

ArchShield: Safe Search

ArchShield enforces safesearch on multiple websites such as Google and Reddit while also blocking over 5 million harmful websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ArchShield: Safe Search",
  "version": "1.2",
  "description": "ArchShield enforces safesearch on multiple websites such as Google and Reddit while also blocking over 5 million harmful websites",
  "homepage_url": "https://archshield.net",
  "background": {
    "service_worker": "background_worker.js"
  },
  "action": {
    "default_popup": "arch_menu.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/website_blocker.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/safe_search.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.wikipedia.org/*"
      ],
      "js": [
        "scripts/wikipedia_sfw.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.reddit.com/*"
      ],
      "js": [
        "scripts/reddit_sfw.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://search.brave.com/*"
      ],
      "js": [
        "scripts/brave_safe.js"
      ],
      "run_at": "document_end"
    }
  ],
  "incognito": "split",
  "web_accessible_resources": [
    {
      "resources": [
        "pages/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}