Gmail Dynamic Images
Update Gmail cached images with the real ones
Gmail Dynamic Imagesคืออะไร?
Gmail Dynamic Images เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dev Labs และคุณลักษณะหลักของมันคือ "Update Gmail cached images with the real ones"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Dynamic Images
ดาวน์โหลดไฟล์ส่วนขยาย Gmail Dynamic Images ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Gmail caches all external urls. That makes it impossible to read the most recent data of the dynamic images (i.e. votes and other server generated images). How the extension works: 1. The extension works in background mode and it's logic is executed only if the opened tab URL is https://mail.google.com/* 2. In the extension's Option page - you can list all domain names, those you want to enable dynamic images (stop caching).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gmail Dynamic Images |
ID | liagkeaohklpkejapcepbakplhlanade |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade |
คำอธิบาย | Update Gmail cached images with the real ones |
ขนาดไฟล์ | 490 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 0.0.4 |
อัปเดตครั้งล่าสุด | 2016-10-12 |
วันที่เผยแพร่ | 2016-10-12 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Dev Labs |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/dev-labs-bg/gmail-dynamic-images |
URL หน้าช่วยเหลือ | https://github.com/dev-labs-bg/gmail-dynamic-images/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://privacy.devlabs.bg |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Dynamic Images", "version": "0.0.4", "manifest_version": 2, "description": "Update Gmail cached images with the real ones", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "default_locale": "en", "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "js\/jquery\/jquery.min.js", "src\/inject\/inject.js" ] } ], "options_ui": { "page": "src\/options.html", "chrome_style": true } } |