Browse.live Web Safety

Browse.live Web Safety

Browser Extension Blurs Ads and Unsafe Search Results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_ExtName__",
  "description": "__MSG_ExtDescription__",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_icon": "media/logo_icon_play.png",
    "default_popup": "popups/index.html"
  },
  "homepage_url": "https://browse.live",
  "background": {
    "scripts": [
      "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/*"
      ],
      "all_frames": true,
      "js": [
        "websafety_info.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "downloads",
    "management",
    "alarms",
    "<all_urls>"
  ],
  "icons": {
    "16": "media/16.png",
    "48": "media/48.png",
    "128": "media/128.png"
  },
  "commands": {
    "open-extension-details": {
      "suggested_key": {
        "default": "Ctrl+Shift+6",
        "mac": "Command+Shift+6"
      },
      "description": "Show Blur Config"
    }
  },
  "web_accessible_resources": [
    "notification.html",
    "notification.js",
    "consent.html",
    "consent.js"
  ],
  "version": "2.23.1606.2535",
  "browser_specific_settings": {
    "gecko": {
      "id": "{7cdbf427-778d-4e61-ac49-9cdaa4263023}"
    }
  }
}