PX Text Highlighter

PX Text Highlighter

PX Text Highlighter is a tool to enhance your reading/research experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PX Text Highlighter",
  "version": "0.0.8",
  "description": "PX Text Highlighter is a tool to enhance your reading/research experience.",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Enable/Disable by clicking",
    "default_icon": "images/browser-action-icon.active.png"
  },
  "icons": {
    "16": "images/logo.png",
    "32": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "permissions": [
    "https://www.google-analytics.com/",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background/index.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      }
    }
  }
}