Github Vanced
An ultimate chrome extension to customize and streamline your GitHub experience!
Что такое Github Vanced?
Github Vanced - это расширение Chrome, разработанное bhumijgupta, и его основная функция - "An ultimate chrome extension to customize and streamline your GitHub experience!".
Снимки экрана расширения
Скачать файл CRX расширения Github Vanced
Скачайте файлы расширений Github Vanced в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | apidmenkobkfjiffjmapgjdapmpaneck |
Официальный URL | https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck |
Описание | An ultimate chrome extension to customize and streamline your GitHub experience! |
Размер файла | 57.45 KB |
Количество установок | 45 |
Текущая Версия | 0.8.4 |
Последнее Обновление | 2019-07-12 |
Дата публикации | 2019-07-12 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | bhumijgupta |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/bhumijgupta/Github-vanced |
URL страницы помощи | https://github.com/bhumijgupta/Github-vanced/issues |
Поддерживаемые языки | 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" ] } |