Super Highlighter

Super Highlighter

Highlight text on web page with a simple right-click and keyboard shortcut. Custom highlight color. Saves highlights on your device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_description__",
  "version": "1.2.1",
  "default_locale": "en",
  "options_page": "options.html",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/16.png",
      "48": "images/48.png",
      "128": "images/128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "storage.js",
        "utils/storageManager.js",
        "utils/highlight.js",
        "utils/highlight_legacy.js",
        "utils/errorManager.js",
        "utils/hoverTools.js",
        "contentScripts/loadHighlights.js",
        "contentScripts/highlighterCursor.js",
        "contentScripts/shortcut.js"
      ],
      "css": [
        "hoverTools.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "analytics.js",
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "storage",
    "unlimitedStorage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "images/*.svg",
    "hoverTools.html"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}