GitHub similar repository suggestions
It shows the similar repositories to the one which is currently open.
什麼是GitHub similar repository suggestions?
GitHub similar repository suggestions是由Vivek Kumar開發的Chrome擴展程式,該擴展的主要功能是“It shows the similar repositories to the one which is currently open.”。
擴展截圖
下載GitHub similar repository suggestions擴展crx文件
下載GitHub similar repository suggestions擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | GitHub similar repository suggestions |
ID | ppgdlobphnefimdieecenohghobnfndh |
官方網址 | https://chromewebstore.google.com/detail/github-similar-repository/ppgdlobphnefimdieecenohghobnfndh |
簡介 | It shows the similar repositories to the one which is currently open. |
檔案大小 | 486 KB |
安裝次數 | 111 |
目前版本 | 1.0.0 |
更新時間 | 2021-05-30 |
上架時間 | 2020-01-05 |
評分 | 5.00/5 共 3 次評分 |
開發者 | Vivek Kumar |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/vivekkumar2696/github-similar-repos |
支援的語言 | 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" ] } } |