Clear New Tab

Clear New Tab

Remove everything from the new tab page and display any image, gif or video in it as a wallpaper.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "6.6.0",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "64": "icon64.png"
    }
  },
  "name": "Clear New Tab",
  "description": "__MSG_description__",
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "permissions": [
    "storage",
    "alarms",
    "management",
    "offscreen"
  ],
  "optional_permissions": [
    "clipboardRead"
  ],
  "host_permissions": [
    "https://clients2.google.com/*",
    "https://clients2.googleusercontent.com/*"
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals allow-top-navigation; script-src 'self' 'unsafe-inline'; child-src 'self'"
  }
}