Browse.live Web Safety

Browse.live Web Safety

Browser Extension that Hides Unfair Ads and Unsafe Search Results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_ExtName__",
  "description": "__MSG_ExtDescription__",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_icon": "media/logo_icon_play.png",
    "default_popup": "popups/index.html"
  },
  "homepage_url": "https://browse.live",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "content.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://browse.live/websafety/notification*",
        "https://staging.browse.live/websafety/notification*"
      ],
      "all_frames": true,
      "js": [
        "notification_blur.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://blur.live/*",
        "https://browse.live/*",
        "https://staging.browse.live/*"
      ],
      "all_frames": true,
      "js": [
        "websafety_info.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "alarms",
    "scripting",
    "downloads",
    "management",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "media/16.png",
    "48": "media/48.png",
    "128": "media/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "notification.html",
        "notification.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [],
    "matches": [
      "https://*.browse.live/*",
      "https://browse.live/*",
      "https://blur.live/*",
      "https://*.blur.live/*"
    ],
    "accepts_tls_channel_id": false
  },
  "version": "2.23.1606.2535",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}