Octopull

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

Что такое Octopull?

Octopull - это расширение Chrome, разработанное http://rmhartog.me, и его основная функция - "Octopull is a tool that extends GitHub pull-requests with additional static analysis results.".

Скачать файл CRX расширения Octopull

Скачайте файлы расширений Octopull в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Octopull Octopull
ID pnpjfmionfckocmegdmijflakfoigjmk
Официальный URL https://chrome.google.com/webstore/detail/octopull/pnpjfmionfckocmegdmijflakfoigjmk
Описание Octopull is a tool that extends GitHub pull-requests with additional static analysis results.
Размер файла 169 KB
Количество установок 14
Текущая Версия 1.2.2
Последнее Обновление 2015-08-31
Дата публикации 2015-08-31
Разработчик http://rmhartog.me
Тип оплаты free
Официальный сайт расширения https://octopull.rmhartog.me/
URL страницы помощи https://octopull.rmhartog.me/
Поддерживаемые языки 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"
    ]
}