Highlight

Highlight

An extension that saves your place in the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Highlight",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "MacCtrl+B"
      },
      "description": "Creates a Highlight."
    }
  },
  "icons": {
    "48": "icon.png",
    "96": "[email protected]"
  },
  "manifest_version": 2,
  "name": "Highlight",
  "description": "An extension that saves your place in the page.",
  "permissions": [
    "bookmarks",
    "*://*/*"
  ],
  "version": "0.0.4"
}