GitHub similar repository suggestions
It shows the similar repositories to the one which is currently open.
GitHub similar repository suggestions là gì?
GitHub similar repository suggestions là một tiện ích mở rộng Chrome được phát triển bởi Vivek Kumar, và tính năng chính của nó là "It shows the similar repositories to the one which is currently open.".
Ả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 similar repository suggestions
Tải xuống các tệp mở rộng GitHub similar repository suggestions 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
It gives a list of all the similar repositories which are similar to the one which is currently viewed. The list is sorted by the number of stars. Steps:- 1. Go to a repository, e.g. https://github.com/tensorflow/tensorflow 2. Wait for the page to load 3. Click the extension icon of Github Similar Repos on the top, beside address bar. For more details, visit https://github.com/vivekkumar2696/github-similar-repos If you like it consider buying a coffee.. https://www.buymeacoffee.com/vivekkumar2696
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub similar repository suggestions |
ID | ppgdlobphnefimdieecenohghobnfndh |
URL Chính Thức | https://chromewebstore.google.com/detail/github-similar-repository/ppgdlobphnefimdieecenohghobnfndh |
Mô tả | It shows the similar repositories to the one which is currently open. |
Kích Thước Tệp | 486 KB |
Số Lần Cài Đặt | 111 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-05-30 |
Ngày Phát Hành | 2020-01-05 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Vivek Kumar |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/vivekkumar2696/github-similar-repos |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub similar repository suggestions", "version": "1.0.0", "manifest_version": 2, "description": "It shows the similar repositories to the one which is currently open.", "permissions": [ "storage", "activeTab" ], "homepage_url": "https:\/\/github.com\/vivekkumar2696\/github-similar-repos", "author": "Vivek Kumar", "icons": { "32": ".\/icons\/GitHub-Mark-32px.png", "64": ".\/icons\/GitHub-Mark-64px.png", "128": ".\/icons\/GitHub-Mark-120px-plus.png" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ ".\/src\/content.js" ], "css": [ ".\/src\/popup.css" ] } ], "web_accessible_resources": [ "src\/popup.html", "popup.css" ], "browser_action": { "default_icon": { "32": ".\/icons\/GitHub-Mark-32px.png", "64": ".\/icons\/GitHub-Mark-64px.png", "128": ".\/icons\/GitHub-Mark-120px-plus.png" }, "default_title": "GitHub Similar Repositories: Click to show\/hide similar repositories" }, "background": { "scripts": [ ".\/src\/background.js" ] } } |