Github Star Count
When you view an awesome page, add star count to github repository links.
Cos'è Github Star Count?
Github Star Count è un'estensione di Chrome sviluppata da progzhangchao, e la sua funzione principale è "When you view an awesome page, add star count to github repository links.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Star Count
Scarica i file di estensione Github Star Count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Github Star Count |
ID | jahogeehepfohgakggfeeimokcgnmdid |
URL Ufficiale | https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid |
Descrizione | When you view an awesome page, add star count to github repository links. |
Dimensione del File | 7.4 KB |
Conteggio Installazioni | 210 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-03-10 |
Data di Pubblicazione | 2021-03-09 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | progzhangchao |
progzhangchao@gmail.com | |
Tipo di Pagamento | in_app |
Lingue Supportate | 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" ] } } |