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. 扩展基本信息
| 名称 | |
| 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"
}
} | |