Redbooth for Gmail
Supercharge your inbox with collaboration. Convert emails into tasks.
Redbooth for Gmail란 무엇입니까?
Redbooth for Gmail은(는) https://redbooth.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Supercharge your inbox with collaboration. Convert emails into tasks."입니다.
확장 프로그램 스크린샷
Redbooth for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Supercharge your inbox with Redbooth for Gmail: - Convert emails into tasks - Create tasks instantly, directly from your inbox Key Redbooth Features: - Create, assign and update tasks anytime, anywhere - Quickly access important projects, tasks and files - Share files through our integrations with Google Drive, Dropbox, and Box - Chat instantly with your team, on the go - HD video conferencing and screen sharing with up to 100 users - Available on iPhone, Android, iPad and web Work smarter with Redbooth! To start a free trial, visit www.redbooth.com.
확장 프로그램 기본 정보
이름 | Redbooth for Gmail |
ID | fcdakleeieippgnbiapagkmjbcefennm |
공식 URL | https://chromewebstore.google.com/detail/redbooth-for-gmail/fcdakleeieippgnbiapagkmjbcefennm |
설명 | Supercharge your inbox with collaboration. Convert emails into tasks. |
파일 크기 | 207 KB |
설치 횟수 | 4,273 |
현재 버전 | 0.11.0 |
최근 업데이트 | 2023-05-11 |
출시 날짜 | 2020-04-28 |
평점 | 3.73/5 총 52 개의 평점 |
개발자 | https://redbooth.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://redbooth.com |
도움말 페이지 URL | https://support.redbooth.com/hc/en-us/articles/115000253571-Gmail-Plugin |
개인정보 보호 정책 페이지 URL | https://redbooth.com/security |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Redbooth for Gmail", "version": "0.11.0", "homepage_url": "http:\/\/www.redbooth.com", "description": "Supercharge your inbox with collaboration. Convert emails into tasks.", "icons": { "48": "icon_48.png", "128": "icon_128.png" }, "background": { "service_worker": "service_worker.js", "type": "module" }, "permissions": [ "background" ], "host_permissions": [ "http:\/\/localhost:8000\/", "http:\/\/redbooth.com\/", "https:\/\/redbooth.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "lib\/jquery-2.1.4.min.js", "lib\/underscore-min.js", "lib\/underscore_mixins.js", "main.js" ] } ], "web_accessible_resources": [ { "resources": [ "img\/task-popup.png", "img\/sprite.png", "img\/redbooth-logo.png" ], "matches": [ "*:\/\/*\/*" ] } ] } |