Github Vanced
An ultimate chrome extension to customize and streamline your GitHub experience!
Cos'è Github Vanced?
Github Vanced è un'estensione di Chrome sviluppata da bhumijgupta, e la sua funzione principale è "An ultimate chrome extension to customize and streamline your GitHub experience!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Vanced
Scarica i file di estensione Github Vanced 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
An ultimate chrome extension to customize and streamline your GitHub experience with a lifetime promise of no ads and no data collection
Features -
1. Website wide dark mode
2. Colors contribution chart to avoid distraction
3. Easy toggle switches to enable and disable features Informazioni di Base sull'Estensione
| Nome | |
| ID | apidmenkobkfjiffjmapgjdapmpaneck |
| URL Ufficiale | https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck |
| Descrizione | An ultimate chrome extension to customize and streamline your GitHub experience! |
| Dimensione del File | 57.45 KB |
| Conteggio Installazioni | 45 |
| Versione Corrente | 0.8.4 |
| Ultimo Aggiornamento | 2019-07-12 |
| Data di Pubblicazione | 2019-07-12 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | bhumijgupta |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/bhumijgupta/Github-vanced |
| URL della Pagina di Aiuto | https://github.com/bhumijgupta/Github-vanced/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Github Vanced",
"description": "An ultimate chrome extension to customize and streamline your GitHub experience!",
"version": "0.8.4",
"author": "Bhumij Gupta",
"icons": {
"16": "assets\/icon_16.png",
"32": "assets\/icon_32.png",
"48": "assets\/icon_48.png",
"128": "assets\/icon_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
],
"js": [
"colorify.js",
"darktheme.js"
],
"run_at": "document_end"
}
],
"options_page": "popup.html",
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs"
]
} | |