Better Github
Enhance your code reading experience on GitHub
Co to jest Better Github?
Better Github to rozszerzenie Chrome opracowane przez ceoshikhar, a jego główną funkcją jest „Enhance your code reading experience on GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Github
Pobierz pliki rozszerzeń Better Github 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Better Github |
ID | ammeaejgjdeifjekkofhnliedhccbmgp |
Oficjalny URL | https://chromewebstore.google.com/detail/better-github/ammeaejgjdeifjekkofhnliedhccbmgp |
Opis | Enhance your code reading experience on GitHub |
Rozmiar pliku | 59.88 KB |
Liczba instalacji | 13 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2022-01-16 |
Data Publikacji | 2021-05-18 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | ceoshikhar |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ceoshikhar/better-github |
Obsługiwane Języki | 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" } } |