GitHub Searchlite
Search, navigate and download files from any git repository.
GitHub Searchlite là gì?
GitHub Searchlite là một tiện ích mở rộng Chrome được phát triển bởi Piyush Santwani, và tính năng chính của nó là "Search, navigate and download files from any git repository.".
Ả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 Searchlite
Tải xuống các tệp mở rộng GitHub Searchlite 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
Admittedly, GitHub has a "find file" button in place to search for files through the repository. But this plugin does more. GitHub Search-lite searches for files and folders and informs you about the size and path(this is useful when there are multiple files with the same name, in the project) before you select the file/folder to navigate to. Also, once you navigate to a file you may download a copy of the file using the download button. Currently, only files(not folders) can be downloaded. The search box is placed at a convenient position, so that it can be used intuitively. FEEDBACK / BUG Having troubles or improvements ideas? Submit your feedback to [email protected] -------------------------- PLEASE NOTICE: "GitHub Searchlite" is not endorsed by GitHub. GitHub and Chrome, are trademarks of their respective owners.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub Searchlite |
ID | lohekcihaibnhdhlbohicihejbfchikj |
URL Chính Thức | https://chromewebstore.google.com/detail/github-searchlite/lohekcihaibnhdhlbohicihejbfchikj |
Mô tả | Search, navigate and download files from any git repository. |
Kích Thước Tệp | 82.1 KB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 0.0.7 |
Cập Nhật Lần Cuối | 2016-12-18 |
Ngày Phát Hành | 2016-12-18 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Piyush Santwani |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://savegpt.com/privacy_policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Searchlite", "short_name": "Git Search", "author": "Piyush Santwani", "version": "0.0.7", "manifest_version": 2, "description": "Search, navigate and download files from any git repository.", "icons": { "16": "icons\/github_300.png", "48": "icons\/github_300.png", "128": "icons\/github_300.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/github_300.png", "default_title": "Github Searchlite" }, "permissions": [ "tabs", "webNavigation", "storage", "https:\/\/github.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "css": [ "src\/inject\/inject.css", "src\/css\/easy-autocomplete.min.css" ] }, { "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "src\/js\/jquery.min.js", "src\/js\/jquery.easy-autocomplete.min.js", "src\/inject\/inject.js" ] } ], "web_accessible_resources": [ "src\/js\/jquery.min.js", "src\/js\/jquery.easy-autocomplete.min.js", "src\/css\/easy-autocomplete.min.css" ] } |