Lazy XKCD
Mouse over text appears under every XKCD comic for easy reading
Lazy XKCDとは何ですか?
Lazy XKCDはeu_oldによって開発されたChromeの拡張機能で、その主な機能は「Mouse over text appears under every XKCD comic for easy reading」です。
拡張機能のスクリーンショット
Lazy XKCD拡張機能のCRXファイルをダウンロード
Lazy XKCD拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A handy extension that swiftly captions the XKCD image mouseover text below the comic for handsfree comic enjoying. 拡張機能の基本情報
| 名前 | |
| ID | ecifpjnngkccfkbnmbejlcaiagmiiobe |
| 公式URL | https://chrome.google.com/webstore/detail/lazy-xkcd/ecifpjnngkccfkbnmbejlcaiagmiiobe |
| 説明 | Mouse over text appears under every XKCD comic for easy reading |
| ファイルサイズ | 37.96 KB |
| インストール数 | 14 |
| 現在のバージョン | 1.2 |
| 最終更新日 | 2014-08-17 |
| 公開日 | 2014-08-17 |
| 評価 | 5.00/5 合計 6 レビュー |
| 開発者 | eu_old |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://evinugur.com |
| ヘルプページのURL | http://github.com/evinugur/LazyXKCD |
| 対応言語 | 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
} | |