New Tab Start Page

New Tab Start Page

Customize New Tabs & More!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "NTSP"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-id.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": true,
      "js": [
        "content-st.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "content-ag.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    }
  ],
  "description": "Customize New Tabs & More!",
  "homepage_url": "https://sermak.ca",
  "icons": {
    "128": "newtab.png"
  },
  "incognito": "split",
  "manifest_version": 3,
  "name": "New Tab Start Page",
  "options_page": "options.html",
  "permissions": [
    "cookies",
    "declarativeNetRequest",
    "tabs",
    "contextMenus",
    "clipboardWrite",
    "clipboardRead",
    "storage",
    "offscreen"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*"
  ],
  "short_name": "NTSP",
  "version": "40.1",
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ]
}