Degallerify

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

ما هو Degallerify؟

Degallerify هو إضافة Chrome تم تطويرها بواسطة JonLuca، والميزة الرئيسية لها هي "This extension will convert all instances of imgur.com/gallery/ links to direct links".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Degallerify

قم بتنزيل ملفات الامتداد Degallerify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    ]
}