PageMark Navigator

PageMark Navigator

Mark your position on the page and jump between marks using F2 key

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PageMark Navigator",
  "version": "1.0",
  "description": "Mark your position on the page and jump between marks using F2 key",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "icons": {
    "128": "img/logo.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": "img/logo.png",
    "default_title": "PageMark Navigator"
  },
  "options_page": "html/options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/jquery.js",
        "js/init.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/marker.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}