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 |
官方網址 | 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" ] } |