Bookmark Syncer

Bookmark Syncer

A Chrome Extension for Bookmark Sync

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Bookmark Syncer",
  "version": "2.0.0",
  "author": "[email protected]",
  "description": "A Chrome Extension for Bookmark Sync",
  "homepage_url": "https://github.com/Hishengs/bookmark-syncer",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "content_scripts": [],
  "action": {
    "default_icon": "icon/48.png",
    "default_title": "A Chrome Extension for Bookmark Sync",
    "default_popup": "src/popup.html"
  },
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "bookmarks",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "https://*.github.com/",
    "https://*.githubusercontent.com/",
    "https://*.gitee.com/"
  ],
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}