Gmail Enhancement Suit
Gmail Enhancement Suit
Gmail Enhancement Suit란 무엇입니까?
Gmail Enhancement Suit은(는) nightingales-developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gmail Enhancement Suit"입니다.
확장 프로그램 스크린샷
Gmail Enhancement Suit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Gmes, the most professional efficiency of Gmail More Handy Popup Fuctions:Popup covers your daily need, you can complete operations without opening the Gmail. Also, multiple account login is supported, you can easily master information of different accounts. More Powerful Editing Fuctions:Support for inserting formulas, codes, tables and special symbols. Also offer you built-in emoji and gif libraries. Make emails be more vivid. Detailed Reading Data Tracking:Real-time control of the opening and reading of emails and links, know the effect of information transmission bettert. No more missing important messages:Set special notification sound for important contacts, no longer miss important messages. Easily get all email addresses from the webpage:Intelligently get the email addresses instead of copying one by one. Reminder to Follow-up:Get reminded to follow up on important emails.
확장 프로그램 기본 정보
이름 | |
ID | fdeaggkbebiffcmnjakjenmpcfblhign |
공식 URL | https://chrome.google.com/webstore/detail/gmail-enhancement-suit/fdeaggkbebiffcmnjakjenmpcfblhign |
설명 | Gmail Enhancement Suit |
파일 크기 | 1.94 MB |
설치 횟수 | 37 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2019-09-26 |
출시 날짜 | 2019-09-26 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | nightingales-developers |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://cdn.yiban.io/%E5%A3%B9%E4%BC%B4%E5%8A%A9%E6%89%8B-%E9%9A%90%E7%A7%81%E6%94%BF%E7%AD%96-JH_20210914.pdf |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Enhancement Suit", "short_name": "GMES", "description": "Gmail Enhancement Suit", "version": "1.0.3", "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "browser_action": { "default_icon": "icons\/logo.png", "default_popup": "build\/popup-entry.html" }, "background": { "persistent": true, "scripts": [ "build\/libs\/jquery.min.js", "build\/backgroundEntry.js" ] }, "externally_connectable": { "matches": [ "http:\/\/localhost\/*", "http:\/\/localhost:1308\/*", "https:\/\/gmes.io\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "build\/libs\/jquery.min.js", "build\/libs\/datepicker.js", "build\/libs\/wangEditor.js", "build\/libs\/highlight.min.js", "build\/contentEntry.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "build\/libs\/jquery.min.js", "build\/contentEntry.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "build\/*", "datas\/*" ], "permissions": [ "tabs", "storage", "unlimitedStorage", "cookies", "notifications", "contextMenus", "webRequest", "webRequestBlocking", "proxy" ] } |