GitHub Gloc
Gives you approximate count of lines of code on GitHub
GitHub Gloc란 무엇입니까?
GitHub Gloc은(는) https://kas-elvirov.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gives you approximate count of lines of code on GitHub"입니다.
확장 프로그램 스크린샷
GitHub Gloc 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Works for public and private repositories. Gives you approximate count of lines of code from: - project detail page, - user's repositories, - organization page, - search results page, - trending page.
확장 프로그램 기본 정보
이름 | GitHub Gloc |
ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
공식 URL | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
설명 | Gives you approximate count of lines of code on GitHub |
파일 크기 | 93.58 KB |
설치 횟수 | 10,000 |
현재 버전 | 8.2.67 |
최근 업데이트 | 2023-02-06 |
출시 날짜 | 2020-06-07 |
평점 | 4.38/5 총 52 개의 평점 |
개발자 | https://kas-elvirov.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kas-elvirov/gloc |
도움말 페이지 URL | https://github.com/kas-elvirov/gloc/issues |
개인정보 보호 정책 페이지 URL | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
지원되는 언어 | de,en,en-GB,en-US,fr,nl,es-419,pl,pt-BR,bg,ru,uk,ar,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_name__", "short_name": "__MSG_shortName__", "author": "__MSG_author__", "description": "__MSG_description__", "version": "8.2.67", "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "index.html", "default_title": "Github Gloc" }, "options_ui": { "page": "options.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "src\/inject.js" ] } ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "storage", "*:\/\/*.github.com\/*" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" } } |