Add to Things for Gmail

Adds a button to Gmail threads to add them to Things, including a link to the message.

Was ist Add to Things for Gmail?

Add to Things for Gmail ist eine Chrome-Erweiterung, die von https://schof.co entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to Gmail threads to add them to Things, including a link to the message.".

Erweiterungsscreenshots

screenshot

Add to Things for Gmail-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add to Things for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Simple extension, which adds a button to Gmail threads to add them to Things, including a link to the message.                    

Grundlegende Informationen zur Erweiterung

Name Add to Things for Gmail Add to Things for Gmail
ID mkpapmkjeddhenbmhdihdiiijgckifln
Offizielle URL https://chromewebstore.google.com/detail/add-to-things-for-gmail/mkpapmkjeddhenbmhdihdiiijgckifln
Beschreibung Adds a button to Gmail threads to add them to Things, including a link to the message.
Dateigröße 52.79 KB
Installationsanzahl 306
Aktuelle Version 1.0.1
Letztes Update 2019-07-24
Veröffentlichungsdatum 2019-07-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://schof.co
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://schof.co
Hilfeseite URL https://schof.co/?utm_source=gmail-things
URL der Datenschutzrichtlinien-Seite https://infowijs.nl/privacy?r=google-webstore
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add to Things for Gmail",
    "short_name": "Things",
    "version": "1.0.1",
    "description": "Adds a button to Gmail threads to add them to Things, including a link to the message.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "web_accessible_resources": [
        "content.js",
        "main.js",
        "vendor.js"
    ],
    "manifest_version": 2
}