Pagemarker

Pagemarker

A simple Chrome extension that allows you to save positions in a page for fast re-visit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pagemarker",
  "description": "A simple Chrome extension that allows you to save positions in a page for fast re-visit",
  "version": "1.0.0",
  "icons": {
    "48": "Pagemarker48.png",
    "128": "Pagemarker128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*/*.pdf"
      ],
      "js": [
        "start.js",
        "draw.js",
        "mark.js",
        "marker.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "Pagemarker19_OFF.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "contentstyle.css"
  ]
}