Octopatcher
Arrgh Some Patchy Goodness to GitHub
What is Octopatcher?
Octopatcher is a Chrome extension developed by Mottie, and its main feature is "Arrgh Some Patchy Goodness to GitHub".
Extension Screenshots
Download Octopatcher Extension CRX File
Download Octopatcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
* 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.
Extension Basic Information
Name | Octopatcher |
ID | lcilaoigfgceebdljpanjenhmnoijmal |
Official URL | https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal |
Description | Arrgh Some Patchy Goodness to GitHub |
File Size | 17.72 KB |
Installation Count | 155 |
Current Version | 1.1.1 |
Last Updated | 2018-01-04 |
Publish Date | 2018-01-04 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Mottie |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Mottie/Octopatcher |
Help Page URL | https://github.com/Mottie/Octopatcher/tree/master/docs |
Supported Languages | 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 } } |