Material You NewTab Theme

Material You NewTab Theme

A simple NewTab or Home page 🌈 theme for your browser. 🛡️ This extension doesn’t require any permissions. You can also add it to other browsers like Chrome, Edge, and Brave by visiting https://github.com/Code-by-imtiyaz/materialYouNewTab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Material You NewTab",
  "version": "1.2",
  "description": "A Simple New Tab (browser's home page) inspired by Google's 'Material You' design.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}