In-Site Bookmark

In-Site Bookmark

A simple in-site bookmark manager. Lists bookmarks for only the site you are viewing (like: chrome.google.com). Notice: Bookmarks…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "In-Site Bookmark",
  "version": "1.3.0",
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "tabs",
    "bookmarks",
    "downloads"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "icons": {
    "128": "icon-128.png"
  }
}