Page Notes & Line Bookmarks

Page Notes & Line Bookmarks

Add persistent line bookmarks with notes on different places on a page and easily scroll between them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Ali Zeaiter",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/bookmark.css"
      ],
      "js": [
        "js/bookmark.c.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "Add persistent line bookmarks with notes on different places on a page and easily scroll between them",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "Page Notes & Line Bookmarks",
  "offline_enabled": true,
  "permissions": [
    "activeTab"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.5",
  "web_accessible_resources": [
    "media/placeholder.svg"
  ]
}