Modern New Tab for Edge

Modern New Tab for Edge

New tab with ChatGPT. Personal dashboard organizes bookmarks, favorite websites, provides access to ChatGPT from start page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "optional_permissions": [
    "notifications"
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "unlimitedStorage",
    "alarms",
    "declarativeNetRequest"
  ],
  "version": "1.1.1",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}