Github Hoverscope
Hoverzoom files and folders in Github
Github Hoverscope là gì?
Github Hoverscope là một tiện ích mở rộng Chrome được phát triển bởi https://jamescui.com, và tính năng chính của nó là "Hoverzoom files and folders in Github".
Ả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 Hoverscope
Tải xuống các tệp mở rộng Github Hoverscope 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
This extension enables users to conveniently browse through files and directories on Github by providing hover zoom capability over file/folder links. * hover mouse over file or folder links to see its content in tooltip without having to click and redirect the page * contents within the tooltip is clickable and scrollable * tooltip closes automatically on mouse-out from inside the tooltip * tooltip can be closed manually by clicking the close button on the top right of the tooltip
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Hoverscope |
ID | ejdmejhddfennlaoejkdkkfcjpphkgbh |
URL Chính Thức | https://chromewebstore.google.com/detail/github-hoverscope/ejdmejhddfennlaoejkdkkfcjpphkgbh |
Mô tả | Hoverzoom files and folders in Github |
Kích Thước Tệp | 1.9 MB |
Số Lần Cài Đặt | 99 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2013-09-25 |
Ngày Phát Hành | 2013-09-25 |
Đánh Giá | 4.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | https://jamescui.com |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Hoverscope", "version": "0.0.1", "description": "Hoverzoom files and folders in Github", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": { "19": "images\/icon16.png", "38": "images\/icon48.png" }, "default_title": "Github Hoverscope" }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "css": [ "\/lib\/jquery-ui\/css\/ui-lightness\/jquery-ui-1.10.3.custom.min.css", "\/lib\/css\/jquery.qtip.min.css", "\/lib\/css\/tooltip.css" ], "js": [ "\/lib\/jquery\/jquery-1.10.2.js", "\/lib\/jquery.qtip.min.js", "\/lib\/jquery.hoverIntent.minified.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*", "tabs" ] } |