Github compare tags

Adds tags to the compare page of Github.

O que é Github compare tags?

Github compare tags é uma extensão do Chrome desenvolvida por marpo60, e sua principal característica é "Adds tags to the compare page of Github.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Github compare tags

Baixe arquivos de extensão Github compare tags 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

                        Add into the dropdown of Github compare page the tags of the repositories.                    

Informações Básicas da Extensão

Nome Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
URL Oficial https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
Descrição Adds tags to the compare page of Github.
Tamanho do Arquivo 8.43 KB
Contagem de Instalações 62
Versão Atual 0.0.6
Última Atualização 2019-06-01
Data de Publicação 2019-06-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor marpo60
Tipo de Pagamento free
Site da Extensão https://github.com/marpo60/github-compare-tags
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github compare tags",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Adds tags to the compare page of Github.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/hot-reload.js"
        ]
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}