Replace bookmark webextensions

Replace bookmark webextensions

Replace a bookmark's content without creating a new one. Ideal for following webcomics. - Only one bookmark for the domain: replaces it without prompting. - No bookmark: offers the option to create it. - More than one: Show list to choose from.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Replace bookmark",
  "version": "0.6resigned1",
  "description": "Replace a bookmark's content without creating a new one",
  "developer": {
    "name": "Gonzalo Bruno",
    "url": "https://github.com/gonzabruno"
  },
  "author": "Gonzalo Bruno",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "notifications",
    "history"
  ],
  "browser_action": {
    "default_icon": "icons/icon-32.png",
    "default_title": "Replace bookmark",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js",
      "popup.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{169f6315-987e-43b0-9500-2e63dcca9360}"
    }
  }
}