Unblock Imgur
Loads Imgur content from DuckDuckGo proxy with basic functionality
Hvad er Unblock Imgur?
Unblock Imgur er en Chrome-udvidelse udviklet af Erdem Olcay, og dens hovedfunktion er "Loads Imgur content from DuckDuckGo proxy with basic functionality".
Udvidelsesskærmbilleder
Download Unblock Imgur-udvidelses-CRX-fil
Download Unblock Imgur-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | iaekhnoaaocbdafimbpgalminkioecaa |
Officiel URL | https://chrome.google.com/webstore/detail/unblock-imgur/iaekhnoaaocbdafimbpgalminkioecaa |
Beskrivelse | Loads Imgur content from DuckDuckGo proxy with basic functionality |
Filstørrelse | 37.42 KB |
Antal Installationer | 387 |
Nuværende Version | 0.2.7 |
Senest Opdateret | 2019-02-13 |
Udgivelsesdato | 2019-02-13 |
Bedømmelse | 3.68/5 Samlet 37 Bedømmelser |
Udvikler | Erdem Olcay |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } |