New tab page by start.me

New tab page by start.me

Replace your New Tab Page with a personal dashboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_APP_NAME__",
  "short_name": "__MSG_APP_SHORT_NAME__",
  "description": "__MSG_APP_DESCRIPTION__",
  "version": "7.3.0",
  "author": "start.me",
  "homepage_url": "https://start.me",
  "icons": {
    "16": "icons/icon128-01.png",
    "19": "icons/icon128-01.png",
    "32": "icons/icon128-01.png",
    "38": "icons/icon128-01.png",
    "48": "icons/icon128-01.png",
    "128": "icons/icon128-01.png"
  },
  "omnibox": {
    "keyword": "me"
  },
  "default_locale": "en",
  "offline_enabled": false,
  "incognito": "split",
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "options_ui": {
    "page": "popup.html#options",
    "browser_style": true,
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "__MSG_APP_NAME__",
    "default_popup": "popup.html",
    "browser_style": false
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      },
      "description": "__MSG_ADD_TO_STARTME__"
    },
    "open_startme_homepage": {
      "suggested_key": {
        "default": "Alt+H",
        "mac": "Alt+H"
      },
      "description": "__MSG_OPEN_STARTME_HOMEPAGE__"
    }
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "optional_permissions": [
    "tabs",
    "bookmarks"
  ],
  "host_permissions": [
    "https://start.me/"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://localhost/*",
      "*://*.start.me/*",
      "*://*.startme.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "welcome.html",
        "import.html",
        "options.html",
        "new_tab.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}