Fix Image WebCache
Fixes Gmail image webcache for specified domains.
Fix Image WebCacheคืออะไร?
Fix Image WebCache เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jiri Tyr และคุณลักษณะหลักของมันคือ "Fixes Gmail image webcache for specified domains."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fix Image WebCache
ดาวน์โหลดไฟล์ส่วนขยาย Fix Image WebCache ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If you see broken images in your Gmail inbox, it could be caused by images pointing to your internal web server (e.g. Jira system) which Google is trying to cache. This extension helps to remove the Google image web cache and point the images directly to the web server. The extension will only work if you can open the images from your browser (i.e. you are connected to the internal network).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fix Image WebCache |
ID | koimnfpoocfeklhjnkekpbdfniimfmpn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn |
คำอธิบาย | Fixes Gmail image webcache for specified domains. |
ขนาดไฟล์ | 100 KB |
จำนวนการติดตั้ง | 28 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2014-02-04 |
วันที่เผยแพร่ | 2014-02-04 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Jiri Tyr |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jtyr/fix-image-webcache |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fix Image WebCache", "version": "1.2", "description": "Fixes Gmail image webcache for specified domains.", "icons": { "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_icon": "icons\/icon-48.png", "default_title": "Fix Image WebCache" }, "options_page": "html\/options.html", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/mail\/*", "https:\/\/mail.google.com\/mail\/*" ], "js": [ "scripts\/jquery-2.0.2.min.js", "scripts\/contentscript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "scripts\/jquery-2.0.2.min.map" ], "permissions": [ "storage" ] } |