Github Vanced
An ultimate chrome extension to customize and streamline your GitHub experience!
Co to jest Github Vanced?
Github Vanced to rozszerzenie Chrome opracowane przez bhumijgupta, a jego główną funkcją jest „An ultimate chrome extension to customize and streamline your GitHub experience!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Vanced
Pobierz pliki rozszerzeń Github Vanced 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
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | apidmenkobkfjiffjmapgjdapmpaneck |
Oficjalny URL | https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck |
Opis | An ultimate chrome extension to customize and streamline your GitHub experience! |
Rozmiar pliku | 57.45 KB |
Liczba instalacji | 45 |
Aktualna Wersja | 0.8.4 |
Ostatnia Aktualizacja | 2019-07-12 |
Data Publikacji | 2019-07-12 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | bhumijgupta |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/bhumijgupta/Github-vanced |
Adres URL Strony Pomocy | https://github.com/bhumijgupta/Github-vanced/issues |
Obsługiwane Języki | 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" ] } |