Octopatcher
Arrgh Some Patchy Goodness to GitHub
Что такое Octopatcher?
Octopatcher - это расширение Chrome, разработанное Mottie, и его основная функция - "Arrgh Some Patchy Goodness to GitHub".
Снимки экрана расширения
Скачать файл CRX расширения Octopatcher
Скачайте файлы расширений Octopatcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
* Collapse Content: Adds a header to issue comments which allows toggling the view of long code and quote blocks. * Collapse Markdown: Make all markdown headers clickable to allow toggling the view of all content between same level headers.
Основная информация о расширении
Название | Octopatcher |
ID | lcilaoigfgceebdljpanjenhmnoijmal |
Официальный URL | https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal |
Описание | Arrgh Some Patchy Goodness to GitHub |
Размер файла | 17.72 KB |
Количество установок | 155 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2018-01-04 |
Дата публикации | 2018-01-04 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | Mottie |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Mottie/Octopatcher |
URL страницы помощи | https://github.com/Mottie/Octopatcher/tree/master/docs |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Octopatcher", "version": "1.1.1", "description": "Arrgh Some Patchy Goodness to GitHub", "author": "Rob Garrison", "manifest_version": 2, "homepage_url": "http:\/\/github.com\/Mottie\/Octopatcher", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "github-collapse-in-comment.js", "github-collapse-markdown.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*", "https:\/\/help.github.com\/*" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon16.png", "19": "images\/icon19.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |