Lazy XKCD
Mouse over text appears under every XKCD comic for easy reading
What is Lazy XKCD?
Lazy XKCD is a Chrome extension developed by eu_old, and its main feature is "Mouse over text appears under every XKCD comic for easy reading".
Extension Screenshots
Download Lazy XKCD Extension CRX File
Download Lazy XKCD extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A handy extension that swiftly captions the XKCD image mouseover text below the comic for handsfree comic enjoying.
Extension Basic Information
Name | |
ID | ecifpjnngkccfkbnmbejlcaiagmiiobe |
Official URL | https://chrome.google.com/webstore/detail/lazy-xkcd/ecifpjnngkccfkbnmbejlcaiagmiiobe |
Description | Mouse over text appears under every XKCD comic for easy reading |
File Size | 37.96 KB |
Installation Count | 14 |
Current Version | 1.2 |
Last Updated | 2014-08-17 |
Publish Date | 2014-08-17 |
Rating | 5.00/5 Total 6 Ratings |
Developer | eu_old |
Payment Type | free |
Extension Website | http://evinugur.com |
Help Page URL | http://github.com/evinugur/LazyXKCD |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lazy XKCD", "description": "Mouse over text appears under every XKCD comic for easy reading", "version": "1.2", "author": "Evin Ugur (http:\/\/github.com\/evinugur)", "permissions": [ "http:\/\/xkcd.com\/*", "https:\/\/xkcd.com\/*" ], "web_accessible_resources": [ "XKCD.js" ], "content_scripts": [ { "matches": [ "http:\/\/*.xkcd.com\/*" ], "js": [ "app.js" ], "run_at": "document_start" } ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "manifest_version": 2 } |