Octopatcher
Arrgh Some Patchy Goodness to GitHub
Cos'è Octopatcher?
Octopatcher è un'estensione di Chrome sviluppata da Mottie, e la sua funzione principale è "Arrgh Some Patchy Goodness to GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Octopatcher
Scarica i file di estensione Octopatcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
* 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.
Informazioni di Base sull'Estensione
Nome | Octopatcher |
ID | lcilaoigfgceebdljpanjenhmnoijmal |
URL Ufficiale | https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal |
Descrizione | Arrgh Some Patchy Goodness to GitHub |
Dimensione del File | 17.72 KB |
Conteggio Installazioni | 155 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2018-01-04 |
Data di Pubblicazione | 2018-01-04 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Mottie |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Mottie/Octopatcher |
URL della Pagina di Aiuto | https://github.com/Mottie/Octopatcher/tree/master/docs |
Lingue Supportate | 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 } } |