GQueues for Gmail

Turn emails into actionable tasks with GQueues - the task manager built for teams on Google Workspace.

什麼是GQueues for Gmail?

GQueues for Gmail是由https://www.gqueues.com開發的Chrome擴展程式,該擴展的主要功能是“Turn emails into actionable tasks with GQueues - the task manager built for teams on Google Workspace.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載GQueues for Gmail擴展crx文件

下載GQueues for Gmail擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Turn your emails into action items in GQueues. Link or attach the email thread to a task to view from inside GQueues. Streamline your email processing and take control of your inbox with GQueues for Gmail. 

---------------------------------------------------------------

The GQueues for Gmail Chrome Extension requires a GQueues account to work. GQueues is a task management app specifically designed for Google users. 

With GQueues you get:
• Deep integration with Google Workspace including Chrome, Gmail, Calendar, and Drive
• Gmail integration to turn your emails into tasks
• Simple, intuitive interface
• Core task management including subtasks and repeating tasks
• Robust search and task filters
• Easy collaboration with shared folders and assignments for delegating work
• Mobile apps for Android and iOS

Get more information or sign up at https://www.gqueues.com                    

擴展基本資訊

名稱 GQueues for Gmail GQueues for Gmail
ID oabmjafkkhaamplldfiipdefcdmjcfac
官方網址 https://chromewebstore.google.com/detail/gqueues-for-gmail/oabmjafkkhaamplldfiipdefcdmjcfac
簡介 Turn emails into actionable tasks with GQueues - the task manager built for teams on Google Workspace.
檔案大小 532 KB
安裝次數 7,287
目前版本 1.2.9
更新時間 2023-03-13
上架時間 2019-06-10
評分 4.25/5 共 28 次評分
開發者 https://www.gqueues.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.gqueues.com
說明頁面URL https://learn.gqueues.com/en/articles/5337343-gqueues-for-gmail-chrome-extension
隱私政策頁面URL https://www.gqueues.com/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GQueues for Gmail",
    "version": "1.2.9",
    "action": [],
    "description": "Turn emails into actionable tasks with GQueues - the task manager built for teams on Google Workspace.",
    "icons": {
        "16": "gqIcon16.png",
        "48": "gqIcon48.png",
        "128": "gqIcon128.png"
    },
    "author": "GQueues",
    "background": {
        "service_worker": "background.min.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "gqueues-gmail-ext.min.css"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "jquery-ui-1.11.2.min.js",
                "gqueues-gmail-ext.min.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/app.gqueues.com\/gmailext?*",
                "https:\/\/www.gqueues.com\/gmailext?*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "login-content-script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.googleusercontent.com\/*",
        "https:\/\/mail.google.com\/*"
    ],
    "permissions": [
        "scripting",
        "storage"
    ],
    "content_security_policy": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "fonts\/*",
                "get-globals.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ]
}