Unblock Imgur

Loads Imgur content from DuckDuckGo proxy with basic functionality

Apa itu Unblock Imgur?

Unblock Imgur adalah ekstensi Chrome yang dikembangkan oleh Erdem Olcay, dan fitur utamanya adalah "Loads Imgur content from DuckDuckGo proxy with basic functionality".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Unblock Imgur

Unduh file ekstensi Unblock Imgur dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Unblock Imgur Unblock Imgur
ID iaekhnoaaocbdafimbpgalminkioecaa
URL Resmi https://chrome.google.com/webstore/detail/unblock-imgur/iaekhnoaaocbdafimbpgalminkioecaa
Deskripsi Loads Imgur content from DuckDuckGo proxy with basic functionality
Ukuran File 37.42 KB
Jumlah Instalasi 387
Versi Saat Ini 0.2.7
Terakhir Diperbarui 2019-02-13
Tanggal Publikasi 2019-02-13
Penilaian 3.68/5 Total 37 Penilaian
Pengembang Erdem Olcay
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}