Degallerify

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

什么是Degallerify?

Degallerify是由JonLuca开发的Chrome扩展程序,该扩展的主要功能是“This extension will convert all instances of imgur.com/gallery/ links to direct links”。

扩展截图

screenshot

下载Degallerify扩展crx文件

下载Degallerify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Degallerify Degallerify
ID jbloaejhknfcbegnkppflnkoechohdki
官方URL https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki
简介 This extension will convert all instances of imgur.com/gallery/ links to direct links
文件大小 110 KB
安装次数 96
当前版本 2.4
更新时间 2017-02-28
上架时间 2017-02-27
评分 5.00/5 共5次评分
开发者 JonLuca
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
支持的语言 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"
    ]
}