Unblock Imgur
Loads Imgur content from DuckDuckGo proxy with basic functionality
What is Unblock Imgur?
Unblock Imgur is a Chrome extension developed by Erdem Olcay, and its main feature is "Loads Imgur content from DuckDuckGo proxy with basic functionality".
Extension Screenshots
Download Unblock Imgur Extension CRX File
Download Unblock Imgur extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | iaekhnoaaocbdafimbpgalminkioecaa |
Official URL | https://chrome.google.com/webstore/detail/unblock-imgur/iaekhnoaaocbdafimbpgalminkioecaa |
Description | Loads Imgur content from DuckDuckGo proxy with basic functionality |
File Size | 37.42 KB |
Installation Count | 387 |
Current Version | 0.2.7 |
Last Updated | 2019-02-13 |
Publish Date | 2019-02-13 |
Rating | 3.68/5 Total 37 Ratings |
Developer | Erdem Olcay |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |