Highlight

Highlight

An extension that saves your place in the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "barhatsor",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "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."
    }
  },
  "description": "An extension that saves your place in the page.",
  "icons": {
    "48": "icon.png",
    "96": "[email protected]"
  },
  "manifest_version": 2,
  "name": "Highlight",
  "permissions": [
    "bookmarks",
    "*://*/*"
  ],
  "version": "0.0.4",
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}