GitHub Gloc
Gives you approximate count of lines of code on GitHub
Wat is GitHub Gloc?
GitHub Gloc is een Chrome-extensie ontwikkeld door https://kas-elvirov.com, en de belangrijkste functie is "Gives you approximate count of lines of code on GitHub".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Gloc
Download GitHub Gloc-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
| Officiële URL | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
| Beschrijving | Gives you approximate count of lines of code on GitHub |
| Bestandsgrootte | 93.58 KB |
| Aantal Installaties | 10,000 |
| Huidige Versie | 8.2.67 |
| Laatst Bijgewerkt | 2023-02-06 |
| Publicatiedatum | 2020-06-07 |
| Beoordeling | 4.38/5 Totaal 52 Beoordelingen |
| Ontwikkelaar | https://kas-elvirov.com |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/kas-elvirov/gloc |
| Help Pagina-URL | https://github.com/kas-elvirov/gloc/issues |
| URL van de Privacybeleid Pagina | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
| Ondersteunde Talen | 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"
}
} | |