xkcd Hover Text

xkcd Hover Text

Takes the hover text of xkcd comics and displays it above or below the image. Update history: 2.0.1 • Fixed extension not working…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.0.1",
  "name": "xkcd Hover Text",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://xkcd.com/*",
        "*://xkcd.org/*",
        "*://www.xkcd.com/*",
        "*://www.xkcd.org/*"
      ],
      "js": [
        "scripts/shared.js",
        "scripts/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options_page.html"
}