Light

Light

Light allows you to have cool tabs. It supports many features

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Light",
  "version": "1.1",
  "description": "Light allows you to have cool tabs. It supports many features",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_page": "newtab.html",
  "permissions": [
    "bookmarks",
    "history",
    "chrome://favicon/",
    "<all_urls>",
    "http://*/*",
    "https://*/*",
    "proxy",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "background": {
    "service_workder": "newtab.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://cn.bing.com/*"
      ],
      "js": [
        "aaa.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://developer.chrome.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}