Github Vanced
An ultimate chrome extension to customize and streamline your GitHub experience!
Was ist Github Vanced?
Github Vanced ist eine Chrome-Erweiterung, die von bhumijgupta entwickelt wurde, und ihr Hauptmerkmal ist "An ultimate chrome extension to customize and streamline your GitHub experience!".
Erweiterungsscreenshots
Github Vanced-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Vanced-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | apidmenkobkfjiffjmapgjdapmpaneck |
| Offizielle URL | https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck |
| Beschreibung | An ultimate chrome extension to customize and streamline your GitHub experience! |
| Dateigröße | 57.45 KB |
| Installationsanzahl | 45 |
| Aktuelle Version | 0.8.4 |
| Letztes Update | 2019-07-12 |
| Veröffentlichungsdatum | 2019-07-12 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | bhumijgupta |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/bhumijgupta/Github-vanced |
| Hilfeseite URL | https://github.com/bhumijgupta/Github-vanced/issues |
| Unterstützte Sprachen | 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"
]
} | |