Simple Highlighter

Simple Highlighter

A simple highlighter for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple Highlighter",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "A simple highlighter for Chrome",
  "icons": {
    "16": "images/rainbow-icon.png",
    "128": "images/rainbow-icon.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/rangy/rangy-core.min.js",
        "bower_components/rangy/rangy-classapplier.min.js",
        "bower_components/rangy/rangy-textrange.min.js",
        "bower_components/rangy/rangy-serializer.min.js",
        "bower_components/rangy/rangy-highlighter.min.js",
        "scripts/highlighter.js"
      ],
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/rainbow-icon.png",
      "38": "images/rainbow-icon.png"
    },
    "default_title": "highlighter",
    "default_popup": "popup.html"
  }
}