Degallerify

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

Co je Degallerify?

Degallerify je rozšíření Chrome vyvinuté JonLuca, a jeho hlavní funkcí je „This extension will convert all instances of imgur.com/gallery/ links to direct links“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Degallerify

Stáhněte si soubory rozšíření Degallerify ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Degallerify Degallerify
ID jbloaejhknfcbegnkppflnkoechohdki
Oficiální URL https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki
Popis This extension will convert all instances of imgur.com/gallery/ links to direct links
Velikost souboru 110 KB
Počet instalací 96
Aktuální Verze 2.4
Poslední Aktualizace 2017-02-28
Datum Vydání 2017-02-27
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář JonLuca
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Podporované Jazyky 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"
    ]
}