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" ] } |