Star History
A chrome extension showing star history graph of current GitHub repository
Co to jest Star History?
Star History to rozszerzenie Chrome opracowane przez https://star-history.com, a jego główną funkcją jest „A chrome extension showing star history graph of current GitHub repository”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Star History
Pobierz pliki rozszerzeń Star History w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Extension of https://star-history.com. When you visit a GitHub repo, this extension allows you to see its star history. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | iijibbcdddbhokfepbblglfgdglnccfn |
| Oficjalny URL | https://chromewebstore.google.com/detail/star-history/iijibbcdddbhokfepbblglfgdglnccfn |
| Opis | A chrome extension showing star history graph of current GitHub repository |
| Rozmiar pliku | 785 KB |
| Liczba instalacji | 4,002 |
| Aktualna Wersja | 2.0 |
| Ostatnia Aktualizacja | 2022-02-07 |
| Data Publikacji | 2020-02-11 |
| Ocena | 4.92/5 Łącznie 12 Oceny |
| Deweloper | https://star-history.com |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/bytebase/star-history-plugin |
| Adres URL Strony Pomocy | https://github.com/bytebase/star-history-plugin/issues |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Star History",
"description": "A chrome extension showing star history graph of current GitHub repository",
"homepage_url": "https:\/\/github.com\/bytebase\/star-history",
"author": "bytebase",
"version": "2.0",
"manifest_version": 3,
"background": {
"service_worker": ".\/background.js"
},
"action": {
"default_popup": ".\/extension\/popup.html"
},
"host_permissions": [
"https:\/\/api.github.com\/"
],
"icons": {
"128": "icon.png"
},
"permissions": [
"activeTab"
]
} | |