Octopull

Octopull is a tool that extends GitHub pull-requests with additional static analysis results.

Was ist Octopull?

Octopull ist eine Chrome-Erweiterung, die von http://rmhartog.me entwickelt wurde, und ihr Hauptmerkmal ist "Octopull is a tool that extends GitHub pull-requests with additional static analysis results.".

Octopull-Erweiterungs-CRX-Datei herunterladen

Laden Sie Octopull-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

                        Octopull is a tool that extends GitHub pull-requests with additional static analysis results.                    

Grundlegende Informationen zur Erweiterung

Name Octopull Octopull
ID pnpjfmionfckocmegdmijflakfoigjmk
Offizielle URL https://chrome.google.com/webstore/detail/octopull/pnpjfmionfckocmegdmijflakfoigjmk
Beschreibung Octopull is a tool that extends GitHub pull-requests with additional static analysis results.
Dateigröße 169 KB
Installationsanzahl 14
Aktuelle Version 1.2.2
Letztes Update 2015-08-31
Veröffentlichungsdatum 2015-08-31
Entwickler http://rmhartog.me
Zahlungsart free
Erweiterungswebsite https://octopull.rmhartog.me/
Hilfeseite URL https://octopull.rmhartog.me/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Octopull",
    "version": "1.2.2",
    "manifest_version": 2,
    "author": "Reinier Hartog",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/octopull.rmhartog.me\/*",
        "storage"
    ],
    "optional_permissions": [
        ""
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "octopull.css"
            ],
            "js": [
                "octopull.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/octopull.rmhartog.me\/*"
            ],
            "css": [
                "extension_installed.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "templates\/*.html"
    ]
}