书签

书签

将其他书签,归类整理。同时覆盖了打开新页面。一进入就可以看到网页导航。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "书签",
  "description": "将其他书签,归类整理。同时覆盖了打开新页面。一进入就可以看到网页导航。",
  "version": "1.0.2",
  "permissions": [
    "bookmarks",
    "favicon",
    "tabs"
  ],
  "action": {
    "default_popup": "index.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "_favicon/*",
        "src/images/*.png"
      ],
      "use_dynamic_url": false
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "128": "icon-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}