YouTab

YouTab

YouTab is a brand new personalized tab featuring customized widgets and wallpapers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.0.2",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "action": {
    "default_icon": "src/assets/icon-512.png",
    "default_popup": "src/modules/popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "16": "src/assets/icon-512.png",
    "48": "src/assets/icon-512.png",
    "128": "src/assets/icon-512.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}