MarkIt - Text Highlighter and Manager for Web

MarkIt - Text Highlighter and Manager for Web

Highlight lines of text across the webpages using this extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MarkIt - Text Highlighter and Manager for Web",
  "version": "2.0.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/highlight.css"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery.highlight-5.js",
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "MarkIt",
    "default_popup": "popup.html"
  },
  "short_name": "MarkIt",
  "description": "Highlight lines of text across the webpages using this extension.",
  "icons": {
    "16": "css/icon/icon_16.png",
    "48": "css/icon/icon_48.png",
    "128": "css/icon/icon_128.png"
  }
}