Custom New Tab Layout

Custom New Tab Layout

A personalized new tab page that displays your frequently visited sites, bookmarks, and apps in a unique way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Custom New Tab Layout",
  "short_name": "CNTL",
  "version": "1.0",
  "minimum_chrome_version": "100",
  "manifest_version": 3,
  "description": "A personalized new tab page that displays your frequently visited sites, bookmarks, and apps in a unique way.",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "bookmarks",
    "favicon",
    "topSites",
    "management",
    "tabs",
    "fontSettings",
    "sessions"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_ui": {
    "page": "newtab.html?options",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}