Senior Safe

Senior Safe

Stay safe online. Block malicious websites, popups, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Senior Safe",
  "description": "Stay safe online. Block malicious websites, popups, and more.",
  "version": "1.0.11",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "identity",
    "storage",
    "system.display"
  ],
  "action": {
    "default_title": "firebase-template-extension",
    "default_popup": "extension_pages/html/app/popup.html"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "persist/persist_content.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/jquery.js",
        "content/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/sweetalert.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "firebase-credentials.json"
      ]
    }
  ],
  "icons": {
    "128": "seniorsafe-icon.png"
  },
  "oauth2": {
    "client_id": "397132679262-uo2h8aptg1pbitpr5p3v1r1l426jpg7b.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}