Cute Tab - Custom Dashboard

Cute Tab - Custom Dashboard

Perfect New tab to organize bookmarks with lots of features. Give a clean and modern look to your default Chrome homepage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.4",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "scripting",
    "management"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "content_scripts": [
    {
      "js": [
        "app-site-controller.js"
      ],
      "matches": [
        "http://localhost:4200/*",
        "*://cute-cursors.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://unsplash.com/*"
      ],
      "js": [
        "unsplash.js"
      ],
      "css": [
        "assets/static/css/unsplash.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}