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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |