Matter

Matter

Highlights the important text in a page to save you reading time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Matter",
  "description": "Highlights the important text in a page to save you reading time.",
  "version": "1.0.3",
  "default_locale": "en",
  "permissions": [
    "storage",
    "webNavigation",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-2.0.3.min.js",
        "js/sylvester.js"
      ],
      "run_at": "document_start",
      "css": [
        "css/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/jquery-2.0.3.min.js",
    "js/sylvester.js"
  ],
  "homepage_url": "http://www.vikparuchuri.com"
}