Octopull

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

What is Octopull?

Octopull is a Chrome extension developed by http://rmhartog.me, and its main feature is "Octopull is a tool that extends GitHub pull-requests with additional static analysis results.".

Download Octopull Extension CRX File

Download Octopull 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

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

Extension Basic Information

Name Octopull Octopull
ID pnpjfmionfckocmegdmijflakfoigjmk
Official URL https://chrome.google.com/webstore/detail/octopull/pnpjfmionfckocmegdmijflakfoigjmk
Description Octopull is a tool that extends GitHub pull-requests with additional static analysis results.
File Size 169 KB
Installation Count 14
Current Version 1.2.2
Last Updated 2015-08-31
Publish Date 2015-08-31
Developer http://rmhartog.me
Payment Type free
Extension Website https://octopull.rmhartog.me/
Help Page URL https://octopull.rmhartog.me/
Supported Languages 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"
    ]
}