Starify Github repo links
Add Github Stars badges to Github project links
Starify Github repo links란 무엇입니까?
Starify Github repo links은(는) https://itenium.be에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add Github Stars badges to Github project links"입니다.
확장 프로그램 스크린샷
Starify Github repo links 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Scans all links on a page and adds a Github Stars badge to a Github project links. Use Control + Alt + G to activate. Runs immediately on Google search results, StackOverflow sites, Github.com, npmjs.com etc.
확장 프로그램 기본 정보
이름 | |
ID | kpficnopciffopkhjpckhkgmnlakcmig |
공식 URL | https://chrome.google.com/webstore/detail/starify-github-repo-links/kpficnopciffopkhjpckhkgmnlakcmig |
설명 | Add Github Stars badges to Github project links |
파일 크기 | 9.86 KB |
설치 횟수 | 17 |
현재 버전 | 1.7 |
최근 업데이트 | 2020-04-27 |
출시 날짜 | 2020-04-25 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | https://itenium.be |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://itenium.be/blog/javascript/starify-github-links/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "permissions": [ "activeTab", "webRequest", "https:\/\/img.shields.io\/" ], "manifest_version": 2, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "*" ], "js": [ "github-stars.user.js" ], "matches": [ "http:\/\/*\/*", "file:\/\/\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "converted_from_user_script": true, "description": "Add Github Stars badges to Github project links", "name": "Starify Github repo links", "short_name": "GithubStarifyLinks", "version": "1.7", "content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' 'sha256-WOdSzz11\/3cpqOdrm89LBL2UPwEU9EhbDtMy2OciEhs='", "icons": { "128": "favicon.png" } } |