Quick Marker

Quick Marker

Creates clickable markers next to the scrollbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Quick Marker",
  "version": "1.0",
  "description": "Creates clickable markers next to the scrollbar.",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Quick Marker"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/som.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus"
  ],
  "incognito": "spanning",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}