Fluent Tab

Fluent Tab

Try out the improved new tab experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Fluent Tab",
  "version": "1.2.2",
  "description": "Try out the improved new tab experience.",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "cookies"
  ],
  "icons": {
    "512": "logo/icon.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.htm"
  },
  "action": {
    "default_icon": {
      "512": "logo/icon.png"
    }
  },
  "background": {
    "service_worker": "script/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script/clock.js",
        "script/script.js",
        "script/info.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}