Better Github
Enhance your code reading experience on GitHub
Cos'è Better Github?
Better Github è un'estensione di Chrome sviluppata da ceoshikhar, e la sua funzione principale è "Enhance your code reading experience on GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Better Github
Scarica i file di estensione Better Github 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
This extensions allows you to change font and it's size of code text on GitHub. You have to provide a font name and size to be applied to all code text on GitHub.
Informazioni di Base sull'Estensione
Nome | Better Github |
ID | ammeaejgjdeifjekkofhnliedhccbmgp |
URL Ufficiale | https://chromewebstore.google.com/detail/better-github/ammeaejgjdeifjekkofhnliedhccbmgp |
Descrizione | Enhance your code reading experience on GitHub |
Dimensione del File | 59.88 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2022-01-16 |
Data di Pubblicazione | 2021-05-18 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | ceoshikhar |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ceoshikhar/better-github |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Github", "version": "1.2.0", "description": "Enhance your code reading experience on GitHub", "content_scripts": [ { "js": [ "better-github.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ] } ], "permissions": [ "storage" ], "browser_action": { "default_title": "Better Github", "default_icon": ".\/assets\/favicon.png", "default_popup": "popup.html" }, "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" } } |