Degallerify

This extension will convert all instances of imgur.com/gallery/ links to direct links

O que é Degallerify?

Degallerify é uma extensão do Chrome desenvolvida por JonLuca, e sua principal característica é "This extension will convert all instances of imgur.com/gallery/ links to direct links".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Degallerify

Baixe arquivos de extensão Degallerify 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

                        This extension replaces all links that point to imgur's gallery feature to direct links to the image

You can view the source code here: https://github.com/jonluca/Degallerify                    

Informações Básicas da Extensão

Nome Degallerify Degallerify
ID jbloaejhknfcbegnkppflnkoechohdki
URL Oficial https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki
Descrição This extension will convert all instances of imgur.com/gallery/ links to direct links
Tamanho do Arquivo 110 KB
Contagem de Instalações 96
Versão Atual 2.4
Última Atualização 2017-02-28
Data de Publicação 2017-02-27
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor JonLuca
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Degallerify",
    "description": "This extension will convert all instances of imgur.com\/gallery\/ links to direct links",
    "version": "2.4",
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/jquery-2.1.1.min.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js",
                "js\/jquery-2.1.1.min.js"
            ]
        }
    ],
    "icons": {
        "64": "images\/icon64.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_title": "Degallerify",
        "default_icon": "images\/icon.png"
    },
    "homepage_url": "https:\/\/github.com\/jonluca\/Degallerify\/",
    "web_accessible_resources": [
        "js\/jquery-2.1.1.min.js"
    ]
}