Gmail Dynamic Images
Update Gmail cached images with the real ones
什麼是Gmail Dynamic Images?
Gmail Dynamic Images是由Dev Labs開發的Chrome擴展程式,該擴展的主要功能是“Update Gmail cached images with the real ones”。
擴展截圖
下載Gmail Dynamic Images擴展crx文件
下載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 |
官方網址 | 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 } } |