Hello NewTab

Hello NewTab

This extension allows you to quickly access your bookmarks on the new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hello NewTab",
  "version": "1.1.0",
  "description": "This extension allows you to quickly access your bookmarks on the new tab.",
  "permissions": [
    "bookmarks",
    "storage",
    "alarms",
    "favicon"
  ],
  "incognito": "split",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "img/icon_016.png",
    "48": "img/icon_048.png",
    "128": "img/icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "options_page": "option.html"
}