Github Whitespace ignorable differ
This extension allows you to only see only the non-whitespace diffs.
Что такое Github Whitespace ignorable differ?
Github Whitespace ignorable differ - это расширение Chrome, разработанное Scott Youngblut, и его основная функция - "This extension allows you to only see only the non-whitespace diffs.".
Снимки экрана расширения
Скачать файл CRX расширения Github Whitespace ignorable differ
Скачайте файлы расширений Github Whitespace ignorable differ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension gives you the ability to turn on white space diffing on a per-site basis using a cookie; It works on any github site including github enterprise!! Tested and Everything!
Основная информация о расширении
Название | Github Whitespace ignorable differ |
ID | klfoeihajdgibpablomibnaaaleicmjb |
Официальный URL | https://chromewebstore.google.com/detail/github-whitespace-ignorab/klfoeihajdgibpablomibnaaaleicmjb |
Описание | This extension allows you to only see only the non-whitespace diffs. |
Размер файла | 17.75 KB |
Количество установок | 16 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2015-01-31 |
Дата публикации | 2015-01-31 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Scott Youngblut |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://scottyoungblut.com/ |
URL страницы помощи | https://github.com/syoungblut/chrome-github-whitespace |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Whitespace ignorable differ", "description": "This extension allows you to only see only the non-whitespace diffs.", "version": "0.0.2", "manifest_version": 2, "incognito": "split", "icons": { "16": "resources\/icon-16.png", "48": "resources\/icon-48.png", "128": "resources\/icon-128.png" }, "web_accessible_resources": [ "page-script-link-rewriter.js", "resources\/icon-16.png" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*\/commit\/*", "https:\/\/*\/*\/compare\/*", "https:\/\/*\/*\/pull\/*" ], "js": [ "jsuri\/jsuri-1.1.1.js", "cookies\/cookies-1.1.0.js", "content-script-cookie-api.js", "content-script-toggle-button.js" ], "run_at": "document_idle", "all_frames": false }, { "matches": [ "https:\/\/*\/*\/commit\/*", "https:\/\/*\/*\/compare\/*", "https:\/\/*\/*\/pull\/*" ], "js": [ "jsuri\/jsuri-1.1.1.js", "cookies\/cookies-1.1.0.js", "content-script-cookie-api.js", "content-script-preference-loader.js" ], "run_at": "document_end", "all_frames": false } ] } |