Search Selection with Bookmarks

Search Selection with Bookmarks

New tab page of web search and bookmarks. Can customize search site by user.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Search Selection with Bookmarks",
  "version": "1.4.30",
  "description": "New tab page of web search and bookmarks. Can customize search site by user.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "bookmarks",
    "history",
    "contextMenus",
    "favicon"
  ],
  "host_permissions": [
    "*://www.google.com/*"
  ],
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "default_locale": "en",
  "short_name": "SSB",
  "options_page": "option.html"
}