Brave Browser - New Tab Theme

Brave Browser - New Tab Theme

An alternative to the default new tab in Brave Browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Brave Browser - New Tab Theme",
  "version": "3",
  "description": "An alternative to the default new tab in Brave Browser.",
  "background": {
    "service_worker": "js/background.js"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "action": {
    "default_icon": {
      "64": "img/64.png"
    }
  },
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "topSites",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}