HackNotice Chrome Extension

HackNotice Chrome Extension

HackNotice Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HackNotice Chrome Extension",
  "short_name": "HackNotice Chrome Extension",
  "version": "1.0.23",
  "description": "HackNotice Chrome Extension",
  "host_permissions": [
    "*://extensionapi.hacknotice.com/*",
    "https://extensionapi.hacknotice.com/*",
    "https://vpn-dev-steve.hacknotice.com/*",
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ],
  "action": {
    "default_popup": "index.html?#/popup",
    "default_title": "HackNotice Chrome Extension"
  },
  "content_scripts": [
    {
      "js": [
        "contentPage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentPage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "19": "assets/hn_logo_19.png",
    "36": "assets/hn_logo_36.png",
    "38": "assets/hn_logo_38.png",
    "48": "assets/hn_logo_48.png",
    "128": "assets/hn_logo_128.png"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_security_policy": {
    "script-src": "'self' 'unsafe-eval' 'unsafe-inline'",
    "connect-src": "https://*",
    "extension_pages": "script-src 'self'; object-src 'self'",
    "Referrer-Policy": "unsafe-url"
  }
}