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
Eメール [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"
    ]
}