ROOT

ROOT

This extension saves you time by putting in grey all text that you have already read previously.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.15",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "background.js",
      "DOMmanipulations.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "ROOT_19_19_text_only.png",
    "default_title": "Press here to start fresh for this web site"
  },
  "icons": {
    "16": "ROOT_16_16_text_only.png",
    "32": "ROOT_19_19_text_only.png",
    "48": "ROOT_48_48.png",
    "96": "ROOT_96_96.png",
    "128": "ROOT_128_128_alpha_around_96_96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.2.js",
        "element_getPosInfo.js",
        "DOMmanipulations.js",
        "gestureRecognition.js",
        "storageAccesses.js",
        "content_script_periodic.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "http://*/*.hostname",
    "http://*/",
    "http://*/*",
    "https://*/*.hostname",
    "https://*/*"
  ]
}