Bookmarks Sync - Sync & Backup bookmarks

Bookmarks Sync - Sync & Backup bookmarks

Synchronize bookmarks between different browsers and back them up automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_name_sync__",
  "description": "__MSG_app_description_sync__",
  "version": "1.1.1",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "bookmarks",
    "history",
    "storage"
  ],
  "action": {
    "default_title": "__MSG_Sync_now__"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "32": "images/icon-sync-32.png",
    "64": "images/icon-sync-64.png",
    "128": "images/icon-sync-128.png",
    "256": "images/icon-sync-256.png"
  }
}