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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
            ]
        }
    ]
}