GitHub Pre Utility
Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…
GitHub Pre Utilityとは何ですか?
GitHub Pre Utilityはyoheimutaによって開発されたChromeの拡張機能で、その主な機能は「Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…」です。
拡張機能のスクリーンショット
GitHub Pre Utility拡張機能のCRXファイルをダウンロード
GitHub Pre Utility拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists with long comments without horizontal and vertical scrolling. This extension uses the keys `r` to wrap pre/code tag and `t` to collapse pre tag. Options - You can switch to work automatically (= without a key down) wrap and collapse with options page. - You can change character length to control first view of collapsed content. - You can change key codes to wrap and collapse with manually. - Click any keys on http://semooh.jp/jquery/api/events/keydown/fn/demo-1/ to confirm a key code. See https://github.com/yoheimuta/github-pre-utility to understand in detail.
拡張機能の基本情報
名前 | GitHub Pre Utility |
ID | ohbmbjnjnkbfnmilcpklobimhkbdcdjl |
公式URL | https://chromewebstore.google.com/detail/github-pre-utility/ohbmbjnjnkbfnmilcpklobimhkbdcdjl |
説明 | Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists… |
ファイルサイズ | 168 KB |
インストール数 | 70 |
現在のバージョン | 0.1.0 |
最終更新日 | 2015-07-04 |
公開日 | 2015-07-04 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | yoheimuta |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/yoheimuta/github-pre-utility |
ヘルプページのURL | https://github.com/yoheimuta/github-pre-utility/issues |
対応言語 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Pre Utility", "manifest_version": 2, "version": "0.1.0", "description": "", "homepage_url": "https:\/\/github.com\/yoheimuta\/github-pre-utility", "icons": { "128": "pre_icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "vendor\/jquery\/jquery.min.js", "vendor\/jquery-collapser\/jquery.collapser.min.js", "main.js", "toggle_pre.js" ], "css": [ "inject.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "web_accessible_resources": [ "vendor\/jquery\/jquery.min.map" ] } |