Utilities Extension for Brave

Utilities Extension for Brave

Utilities related to the Brave browser, including a tab creation blocker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Utilities Extension for Brave",
  "short_name": "Utils for Brave",
  "version": "3.0.0",
  "description": "Utilities related to the Brave browser, including a tab creation blocker.",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "pages/index.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}