The Illiterate Web

The Illiterate Web

dis is 4 if ur 2 lazy 2 read evrything???

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Illiterate Web",
  "description": "dis is 4 if ur 2 lazy 2 read evrything???",
  "version": "1",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://www.google.com/*",
        "https://www.google.com/*",
        "http://www.bing.com/*",
        "https://www.bing.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/findAndReplaceDOMText.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "resources/*"
  ],
  "icons": {
    "128": "icon.png"
  }
}