Dynamic Bookmarks

Dynamic Bookmarks

Allows for the creation of dynamic bookmarks that update automatically to point the most recent page the user has visited on a specified domain.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Dynamic Bookmarks",
  "version": "1.0.1",
  "description": "Allows for the creation of dynamic bookmarks.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "32": "icon-32.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "Bookmark this page",
    "default_popup": "popup.html",
    "default_icon": "icon-32.png"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "webRequest"
  ]
}