GQueues for Google Calendar

Mark GQueues tasks complete directly in Google Calendar

Τι είναι το GQueues for Google Calendar;

Το GQueues for Google Calendar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.gqueues.com, και η κύρια λειτουργία του είναι "Mark GQueues tasks complete directly in Google Calendar".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GQueues for Google Calendar

Λήψη αρχείων επέκτασης GQueues for Google Calendar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        If you live in Google Calendar, you understand the importance of a timely reminder to get to work, and blocking out meeting-free time so you have space to actually get that work done. 

With the GQueues Google Calendar extension, you can view full details for GQueues tasks syncing to Google Calendar, and mark those tasks complete right from the Calendar interface. No switching back and forth between the two apps to keep track of what you’ve accomplished. 

If you’ve already activated Calendar syncing for your GQueues account, the next step is to install this extension to push that integration (and your productivity) to the next level. 

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

The GQueues for Google Calendar Chrome Extension requires a GQueues account to work. GQueues is a task management app specifically designed for teams on Google Workspace.

With GQueues you get:
• Deep integration with Google Workspace including Chrome, Gmail, Calendar, and Drive
• Immediate, 2-way task syncing with Google Calendar
• Unlimited, project-based calendars to share with your team
• 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 Google Calendar GQueues for Google Calendar
ID fghnmlcmakpmbjgplmcbkhgkeegofhll
Επίσημο URL https://chromewebstore.google.com/detail/gqueues-for-google-calend/fghnmlcmakpmbjgplmcbkhgkeegofhll
Περιγραφή Mark GQueues tasks complete directly in Google Calendar
Μέγεθος Αρχείου 498 KB
Αριθμός Εγκαταστάσεων 10,263
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2023-02-08
Ημερομηνία Δημοσίευσης 2020-02-17
Αξιολόγηση 5.00/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής https://www.gqueues.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.gqueues.com
Διεύθυνση URL της Σελίδας Βοήθειας https://learn.gqueues.com/en/articles/5337364-set-up-the-gqueues-for-google-calendar-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 Google Calendar",
    "version": "1.2.2",
    "action": [],
    "description": "Mark GQueues tasks complete directly in Google Calendar",
    "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:\/\/calendar.google.com\/*"
            ],
            "css": [
                "gqueues-calendar-ext.min.css"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "jquery-ui-1.11.2.min.js",
                "gqueues-calendar-ext.min.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/app.gqueues.com\/calendarext?*",
                "https:\/\/www.gqueues.com\/calendar\/createEvents*",
                "https:\/\/app.gqueues.com\/calendar\/createEvents*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "login-content-script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/calendar.google.com\/*"
    ],
    "permissions": [
        "scripting",
        "storage"
    ],
    "content_security_policy": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "fonts\/*",
                "fonts.css"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ]
}