Unblock Imgur

Loads Imgur content from DuckDuckGo proxy with basic functionality

Wat is Unblock Imgur?

Unblock Imgur is een Chrome-extensie ontwikkeld door Erdem Olcay, en de belangrijkste functie is "Loads Imgur content from DuckDuckGo proxy with basic functionality".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Unblock Imgur

Download Unblock Imgur-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Unblock Imgur Unblock Imgur
ID iaekhnoaaocbdafimbpgalminkioecaa
Officiële URL https://chrome.google.com/webstore/detail/unblock-imgur/iaekhnoaaocbdafimbpgalminkioecaa
Beschrijving Loads Imgur content from DuckDuckGo proxy with basic functionality
Bestandsgrootte 37.42 KB
Aantal Installaties 387
Huidige Versie 0.2.7
Laatst Bijgewerkt 2019-02-13
Publicatiedatum 2019-02-13
Beoordeling 3.68/5 Totaal 37 Beoordelingen
Ontwikkelaar Erdem Olcay
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}