Fix Image WebCache
Fixes Gmail image webcache for specified domains.
Fix Image WebCache là gì?
Fix Image WebCache là một tiện ích mở rộng Chrome được phát triển bởi Jiri Tyr, và tính năng chính của nó là "Fixes Gmail image webcache for specified domains.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fix Image WebCache
Tải xuống các tệp mở rộng Fix Image WebCache dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fix Image WebCache |
ID | koimnfpoocfeklhjnkekpbdfniimfmpn |
URL Chính Thức | https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn |
Mô tả | Fixes Gmail image webcache for specified domains. |
Kích Thước Tệp | 100 KB |
Số Lần Cài Đặt | 28 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2014-02-04 |
Ngày Phát Hành | 2014-02-04 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Jiri Tyr |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jtyr/fix-image-webcache |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |