Add to Things for Gmail

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

Co to jest Add to Things for Gmail?

Add to Things for Gmail to rozszerzenie Chrome opracowane przez https://schof.co, a jego główną funkcją jest „Adds a button to Gmail threads to add them to Things, including a link to the message.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Add to Things for Gmail

Pobierz pliki rozszerzeń Add to Things for Gmail w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Add to Things for Gmail Add to Things for Gmail
ID mkpapmkjeddhenbmhdihdiiijgckifln
Oficjalny URL https://chromewebstore.google.com/detail/add-to-things-for-gmail/mkpapmkjeddhenbmhdihdiiijgckifln
Opis Adds a button to Gmail threads to add them to Things, including a link to the message.
Rozmiar pliku 52.79 KB
Liczba instalacji 306
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2019-07-24
Data Publikacji 2019-07-24
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://schof.co
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://schof.co
Adres URL Strony Pomocy https://schof.co/?utm_source=gmail-things
Adres URL Strony Polityki Prywatności https://infowijs.nl/privacy?r=google-webstore
Obsługiwane Języki 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
}