Octopatcher
Arrgh Some Patchy Goodness to GitHub
Co to jest Octopatcher?
Octopatcher to rozszerzenie Chrome opracowane przez Mottie, a jego główną funkcją jest „Arrgh Some Patchy Goodness to GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Octopatcher
Pobierz pliki rozszerzeń Octopatcher 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
* 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.
Podstawowe informacje o rozszerzeniu
Nazwa | Octopatcher |
ID | lcilaoigfgceebdljpanjenhmnoijmal |
Oficjalny URL | https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal |
Opis | Arrgh Some Patchy Goodness to GitHub |
Rozmiar pliku | 17.72 KB |
Liczba instalacji | 155 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2018-01-04 |
Data Publikacji | 2018-01-04 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Mottie |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Mottie/Octopatcher |
Adres URL Strony Pomocy | https://github.com/Mottie/Octopatcher/tree/master/docs |
Obsługiwane Języki | 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 } } |