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ファイルをダウンロード
GitHub Gloc拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } |