GitHub Gloc
Gives you approximate count of lines of code on GitHub
Vad är GitHub Gloc?
GitHub Gloc är en Chrome-tillägg utvecklad av https://kas-elvirov.com, och dess huvudfunktion är "Gives you approximate count of lines of code on GitHub".
Tilläggsskärmbilder
Ladda ner GitHub Gloc-förlängningens CRX-fil
Ladda ner GitHub Gloc-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
| Namn | |
| ID | kaodcnpebhdbpaeeemkiobcokcnegdki |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-gloc/kaodcnpebhdbpaeeemkiobcokcnegdki |
| Beskrivning | Gives you approximate count of lines of code on GitHub |
| Filstorlek | 93.58 KB |
| Antal Installationer | 10,000 |
| Aktuell Version | 8.2.67 |
| Senast Uppdaterad | 2023-02-06 |
| Publiceringsdatum | 2020-06-07 |
| Betyg | 4.38/5 Totalt 52 Betyg |
| Utvecklare | https://kas-elvirov.com |
| E-post | kas.elvirov@gmail.com |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/kas-elvirov/gloc |
| Hjälpsida URL | https://github.com/kas-elvirov/gloc/issues |
| URL till Sekretesspolicy Sidan | https://github.com/kas-elvirov/gloc/blob/master/PRIVACY.md |
| Stödda Språk | 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"
}
} | |