Keep Aware

Keep Aware

Human-centric Browser Security

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Keep Aware",
  "version": "2.0.12",
  "description": "Human-centric Browser Security",
  "permissions": [
    "storage",
    "tabs",
    "downloads",
    "identity",
    "management",
    "cookies",
    "alarms",
    "webRequest",
    "identity.email",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*.awarefilter.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "minimum_chrome_version": "106",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "logic.js",
        "content-script.js",
        "page-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true,
      "match_origin_as_fallback": true
    }
  ],
  "incognito": "split",
  "action": {
    "default_title": "Keep Aware",
    "default_popup": "index.html",
    "default_icon": {
      "16": "images/Icon-16.png",
      "48": "images/Icon-48.png",
      "128": "images/Icon-128.png"
    }
  },
  "icons": {
    "16": "images/Icon-16.png",
    "48": "images/Icon-48.png",
    "128": "images/Icon-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "options_ui": {
    "page": "index.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/ka_logo.png",
        "images/Icon-48.png",
        "redirect.html",
        "xxhr.js",
        "msghand.css"
      ],
      "matches": [
        "<all_urls>",
        "*://*/*"
      ]
    }
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "manifest_version": 3
}