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 là gì?
GitHub Pre Utility là một tiện ích mở rộng Chrome được phát triển bởi yoheimuta, và tính năng chính của nó là "Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub Pre Utility
Tải xuống các tệp mở rộng GitHub Pre Utility dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Pre Utility |
ID | ohbmbjnjnkbfnmilcpklobimhkbdcdjl |
URL Chính Thức | https://chromewebstore.google.com/detail/github-pre-utility/ohbmbjnjnkbfnmilcpklobimhkbdcdjl |
Mô tả | Try this features at http://yoheimuta.github.io/github-pre-utility/ before installing it. - You can read github issues and gists… |
Kích Thước Tệp | 168 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2015-07-04 |
Ngày Phát Hành | 2015-07-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | yoheimuta |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yoheimuta/github-pre-utility |
URL Trang Trợ Giúp | https://github.com/yoheimuta/github-pre-utility/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |