Unblock Imgur
Loads Imgur content from DuckDuckGo proxy with basic functionality
Unblock Imgurคืออะไร?
Unblock Imgur เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erdem Olcay และคุณลักษณะหลักของมันคือ "Loads Imgur content from DuckDuckGo proxy with basic functionality"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unblock Imgur
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } |