Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
Auto Expander for Gmail™란 무엇입니까?
Auto Expander for Gmail™은(는) Jacob "kurtextrem" Groß에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically expands too long mails in Gmail™."입니다.
확장 프로그램 스크린샷
Auto Expander for Gmail™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you often receive too long mails and you're tired of scrolling to the bottom to open the full mail? "[Message clipped] View entire message" is your foe? Look no further! This extension automatically expands the mails in Gmail™ for you (also works in the new re-designed Gmail!). Update: v1.5.0.3 - fixed various issues (not expanding properly etc) Permissions: Rights to read from Gmail in order to expand the mail. No data collected. Code is open source: https://github.com/kurtextrem/Gmail-Auto-Expander Icon by Boyan Kostov.
확장 프로그램 기본 정보
이름 | Auto Expander for Gmail™ |
ID | ilkidmijegomodfeplfdekbfglhaahba |
공식 URL | https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba |
설명 | Automatically expands too long mails in Gmail™. |
파일 크기 | 10.39 KB |
설치 횟수 | 523 |
현재 버전 | 1.5.0.5 |
최근 업데이트 | 2023-12-03 |
출시 날짜 | 2019-05-25 |
평점 | 2.67/5 총 9 개의 평점 |
개발자 | Jacob "kurtextrem" Groß |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kurtextrem/Gmail-Auto-Expander |
도움말 페이지 URL | https://github.com/kurtextrem/Gmail-Auto-Expander/issues/ |
개인정보 보호 정책 페이지 URL | https://www.kurtextrem.de/chrome/PRIVACY.html |
지원되는 언어 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.5.0.5", "manifest_version": 3, "description": "__MSG_extDesc__", "default_locale": "en", "icons": { "128": "icon-128.png", "16": "icon-128.png", "48": "icon-128.png" }, "author": "Jacob \u201ekurtextrem\" Gro\u00df", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "minimum_chrome_version": "88", "host_permissions": [ "*:\/\/mail.google.com\/*" ] } |