Fluent Tab

Fluent Tab

Replace the edge's default new tab with a fluent new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Fluent Tab",
  "version": "1.1.1",
  "description": "Replace the edge's default new tab with a fluent new tab",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "512": "icon.png"
  },
  "chrome_url_overrides": {
    "newtab": "search.htm"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "clock.js",
        "script.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"
}