Unblock Imgur
Loads Imgur content from DuckDuckGo proxy with basic functionality
Unblock Imgurとは何ですか?
Unblock ImgurはErdem Olcayによって開発されたChromeの拡張機能で、その主な機能は「Loads Imgur content from DuckDuckGo proxy with basic functionality」です。
拡張機能のスクリーンショット
Unblock Imgur拡張機能のCRXファイルをダウンロード
Unblock Imgur拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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\/*" ] } |