XKCD Alt Text

XKCD Alt Text

The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "xkcdalt.js"
      ],
      "matches": [
        "*://xkcd.com/*",
        "*://xkcd.org/*",
        "*://xkcd.net/*",
        "*://www.xkcd.com/*",
        "*://www.xkcd.org/*",
        "*://www.xkcd.net/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "name": "XKCD Alt Text",
  "version": "2.8.1"
}