Gmail To Things

A quick shortcut to add tasks to Things inside Gmail.

Τι είναι το Gmail To Things;

Το Gmail To Things είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rafaelgandi.com, και η κύρια λειτουργία του είναι "A quick shortcut to add tasks to Things inside Gmail.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Gmail To Things

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

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

                        A lightweight chrome extension designed to effortlessly integrate your Gmail and Things workflow. With a quick click or keyboard shortcut add tasks directly to your Things inbox right inside your Gmail web app. 

This is particularly beneficial for non-Mac users, such as those working on office computers, as well as individuals unable to install the Things app on their computer. Don't let platform limitations hinder your efficiency—empower yourself with this simple, user-friendly solution.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Gmail To Things Gmail To Things
ID boiinfgjokondlalgdcgfkhimdpolkfg
Επίσημο URL https://chromewebstore.google.com/detail/gmail-to-things/boiinfgjokondlalgdcgfkhimdpolkfg
Περιγραφή A quick shortcut to add tasks to Things inside Gmail.
Μέγεθος Αρχείου 240 KB
Αριθμός Εγκαταστάσεων 44
Τρέχουσα Έκδοση 0.0.0.5
Τελευταία Ενημέρωση 2023-11-26
Ημερομηνία Δημοσίευσης 2023-11-22
Προγραμματιστής https://rafaelgandi.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://rafaelgandi.notion.site/Gmail-to-Things-2f99b29adcbc4065b4b729629d2f35a4
Διεύθυνση URL της Σελίδας Βοήθειας https://rafaelgandi.notion.site/Gmail-to-Things-2f99b29adcbc4065b4b729629d2f35a4
URL της Σελίδας Πολιτικής Απορρήτου https://rafaelgandi.notion.site/Gmail-to-Things-Privacy-Policy-e02f1813812940989d10fcab5bd35ac9?pvs=4
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail To Things",
    "description": "A quick shortcut to add tasks to Things inside Gmail.",
    "version": "0.0.0.5",
    "manifest_version": 3,
    "minimum_chrome_version": "92",
    "icons": {
        "16": "assets\/icons\/16x16.png",
        "48": "assets\/icons\/48x48.png",
        "128": "assets\/icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "lib\/zepto.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "lib\/helpers.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "open-g2t-dialog": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "Alt+Shift+T"
            },
            "description": "Open Gmail 2 Things dialog."
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+O",
                "mac": "Alt+Shift+O"
            },
            "description": "Open stash window."
        }
    }
}