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