Octopatcher
Arrgh Some Patchy Goodness to GitHub
¿Qué es Octopatcher?
Octopatcher es una extensión de Chrome desarrollada por Mottie, y su función principal es "Arrgh Some Patchy Goodness to GitHub".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Octopatcher
Descarga archivos de extensión Octopatcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
* 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.
Información Básica de la Extensión
Nombre | Octopatcher |
ID | lcilaoigfgceebdljpanjenhmnoijmal |
URL Oficial | https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal |
Descripción | Arrgh Some Patchy Goodness to GitHub |
Tamaño del Archivo | 17.72 KB |
Cantidad de Instalaciones | 155 |
Versión Actual | 1.1.1 |
Última Actualización | 2018-01-04 |
Fecha de Publicación | 2018-01-04 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | Mottie |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Mottie/Octopatcher |
URL de la Página de Ayuda | https://github.com/Mottie/Octopatcher/tree/master/docs |
Idiomas Soportados | 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 } } |