Github Star Count
When you view an awesome page, add star count to github repository links.
Co to jest Github Star Count?
Github Star Count to rozszerzenie Chrome opracowane przez progzhangchao, a jego główną funkcją jest „When you view an awesome page, add star count to github repository links.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Star Count
Pobierz pliki rozszerzeń Github Star Count 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
When you view an awesome page on github site, such as https://github.com/fffaraz/awesome-cpp, click the extension button, it will add star count to all github repository links on the page.
Podstawowe informacje o rozszerzeniu
Nazwa | Github Star Count |
ID | jahogeehepfohgakggfeeimokcgnmdid |
Oficjalny URL | https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid |
Opis | When you view an awesome page, add star count to github repository links. |
Rozmiar pliku | 7.4 KB |
Liczba instalacji | 210 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-03-10 |
Data Publikacji | 2021-03-09 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | progzhangchao |
[email protected] | |
Typ Płatności | in_app |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Star Count", "version": "1.0", "description": "When you view an awesome page, add star count to github repository links.", "author": "progzhangchao", "icons": { "128": "icon-128.png", "48": "icon-128.png" }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content-script.js" ] } ], "background": { "scripts": [ "js\/background.js" ] } } |