Hide whitespaces GitHub
Always hide whitespaces in GitHub
Что такое Hide whitespaces GitHub?
Hide whitespaces GitHub - это расширение Chrome, разработанное Arnaud Barré, и его основная функция - "Always hide whitespaces in GitHub".
Снимки экрана расширения
Скачать файл CRX расширения Hide whitespaces GitHub
Скачайте файлы расширений Hide whitespaces GitHub в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option
Основная информация о расширении
Название | Hide whitespaces GitHub |
ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
Официальный URL | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
Описание | Always hide whitespaces in GitHub |
Размер файла | 10.26 KB |
Количество установок | 57 |
Текущая Версия | 0.6.0 |
Последнее Обновление | 2022-08-09 |
Дата публикации | 2020-06-08 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Arnaud Barré |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/ArnaudBarre/hide-whitespaces-github |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide whitespaces GitHub", "version": "0.6.0", "description": "Always hide whitespaces in GitHub", "permissions": [ "https:\/\/github.com\/**" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/**" ], "run_at": "document_start", "js": [ "hide-whitespaces.js" ] } ], "icons": { "128": "icon.png" } } |