Roam Page - Favorites-based Tab

Roam Page - Favorites-based Tab

Bookmarks, if well organized, is as important as a well-tuned homepage. Xiaoshu is a trouble-saving and efficient 2-in-1 extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "permissions": [
    "bookmarks",
    "storage"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "dist/background/index.mjs"
  },
  "action": {
    "default_popup": "dist/popup/index.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "chrome_url_overrides": {
    "newtab": "dist/newtab/index.html"
  },
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "2.9.1",
  "homepage_url": "https://xiaoshuapp.com/",
  "default_locale": "zh_CN",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/*"
      ],
      "js": [
        "dist/contentScripts/inject.global.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://roam.mixcm.com/*"
      ],
      "js": [
        "dist/contentScripts/chainwon.global.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "dist/contentScripts/youtube.global.js"
      ],
      "run_at": "document_end"
    }
  ]
}