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
官方網址 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"
    ]
}