Bookmark Sync

Bookmark Sync

Quickly update your saved bookmark URL with the current page URL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bookmark Sync",
  "version": "1.1",
  "description": "Quickly update your saved bookmark URL with the current page URL.",
  "icons": {
    "16": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]",
    "256": "images/[email protected]",
    "512": "images/[email protected]"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "tabs"
  ],
  "action": {
    "default_title": "Update bookmark"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}