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 |
Eメール | [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 } } |