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 |
官方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 } } |