Octopatcher

Arrgh Some Patchy Goodness to GitHub

O que é Octopatcher?

Octopatcher é uma extensão do Chrome desenvolvida por Mottie, e sua principal característica é "Arrgh Some Patchy Goodness to GitHub".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Octopatcher

Baixe arquivos de extensão Octopatcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Octopatcher Octopatcher
ID lcilaoigfgceebdljpanjenhmnoijmal
URL Oficial https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal
Descrição Arrgh Some Patchy Goodness to GitHub
Tamanho do Arquivo 17.72 KB
Contagem de Instalações 155
Versão Atual 1.1.1
Última Atualização 2018-01-04
Data de Publicação 2018-01-04
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Mottie
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Mottie/Octopatcher
URL da Página de Ajuda https://github.com/Mottie/Octopatcher/tree/master/docs
Idiomas Suportados 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
    }
}