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文件
下載Redbooth for Gmail擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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": [ "*:\/\/*\/*" ] } ] } |