Unblock Imgur

Loads Imgur content from DuckDuckGo proxy with basic functionality

ما هو Unblock Imgur؟

Unblock Imgur هو إضافة Chrome تم تطويرها بواسطة Erdem Olcay، والميزة الرئيسية لها هي "Loads Imgur content from DuckDuckGo proxy with basic functionality".

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

screenshot

تحميل ملف CRX للإضافة Unblock Imgur

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

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

                        Redirects imgur.com requests to DuckDuckGo proxy. This allows you to view both imgur.com pages and media embedded in other sites seamlessly.

Source code available at https://github.com/erdemolcay/unblock-imgur.                    

معلومات أساسية عن التمديد

الاسم Unblock Imgur Unblock Imgur
ID iaekhnoaaocbdafimbpgalminkioecaa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/unblock-imgur/iaekhnoaaocbdafimbpgalminkioecaa
الوصف Loads Imgur content from DuckDuckGo proxy with basic functionality
حجم الملف 37.42 KB
عدد التثبيتات 387
النسخة الحالية 0.2.7
آخر تحديث 2019-02-13
تاريخ النشر 2019-02-13
تقييم 3.68/5 مجموع تقييمات 37
المطور Erdem Olcay
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unblock Imgur",
    "description": "Loads Imgur content from DuckDuckGo proxy with basic functionality",
    "version": "0.2.7",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/proxy.duckduckgo.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.imgur.com\/*",
        "*:\/\/proxy.duckduckgo.com\/*"
    ]
}