xkcd #37

xkcd #37

This extension actually implements xkcd #37. Yeah, for real.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0.6",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "default_locale": "en_US",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "lexer.js",
        "POSTagger.js",
        "lexicon.js",
        "amazon.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ]
}