Degallerify

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

What is Degallerify?

Degallerify is a Chrome extension developed by JonLuca, and its main feature is "This extension will convert all instances of imgur.com/gallery/ links to direct links".

Extension Screenshots

screenshot

Download Degallerify Extension CRX File

Download Degallerify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Degallerify Degallerify
ID jbloaejhknfcbegnkppflnkoechohdki
Official URL https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki
Description This extension will convert all instances of imgur.com/gallery/ links to direct links
File Size 110 KB
Installation Count 96
Current Version 2.4
Last Updated 2017-02-28
Publish Date 2017-02-27
Rating 5.00/5 Total 5 Ratings
Developer JonLuca
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Supported Languages 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"
    ]
}