Octopatcher

Arrgh Some Patchy Goodness to GitHub

Was ist Octopatcher?

Octopatcher ist eine Chrome-Erweiterung, die von Mottie entwickelt wurde, und ihr Hauptmerkmal ist "Arrgh Some Patchy Goodness to GitHub".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Octopatcher-Erweiterungs-CRX-Datei herunterladen

Laden Sie Octopatcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        * 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.                    

Grundlegende Informationen zur Erweiterung

Name Octopatcher Octopatcher
ID lcilaoigfgceebdljpanjenhmnoijmal
Offizielle URL https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal
Beschreibung Arrgh Some Patchy Goodness to GitHub
Dateigröße 17.72 KB
Installationsanzahl 155
Aktuelle Version 1.1.1
Letztes Update 2018-01-04
Veröffentlichungsdatum 2018-01-04
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Mottie
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Mottie/Octopatcher
Hilfeseite URL https://github.com/Mottie/Octopatcher/tree/master/docs
Unterstützte Sprachen 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
    }
}