New Tab Draft

New Tab Draft

Simple & clean writing experience on browser new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "New Tab Draft",
  "short_name": "Draft",
  "version": "0.3.9",
  "description": "Simple & clean writing experience on browser new tab.",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "js/main.bundle.js"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "fontSettings"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "sandbox.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}