Update current bookmark

Update current bookmark

Right click on a link to update the current bookmark

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "src/icons/chain-star.png",
    "48": "src/icons/chain-star.png",
    "128": "src/icons/chain-star.png"
  },
  "background": {
    "scripts": [
      "src/context-menu.js"
    ],
    "persistent": false
  },
  "permissions": [
    "contextMenus",
    "declarativeContent"
  ],
  "optional_permissions": [
    "bookmarks"
  ]
}