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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } } |