Add to OmniFocus for Gmail

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

Что такое Add to OmniFocus for Gmail?

Add to OmniFocus for Gmail - это расширение Chrome, разработанное https://schof.co, и его основная функция - "Adds a button to Gmail threads to add them to OmniFocus, including a link to the message.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Add to OmniFocus for Gmail

Скачайте файлы расширений Add to OmniFocus for Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

This extension works with the new Gmail as well as with the old Gmail interface. Support for the new Gmail UI is in beta, so please let us know if something isn't working correctly for you! You can reach us on: [email protected]

After installing, please reload any Gmail tabs you might have open, so that the button will show up.



Note: this extension is in no way affiliated or created by Omnigroup.                    

Основная информация о расширении

Название Add to OmniFocus for Gmail Add to OmniFocus for Gmail
ID ihgdbplidfgbloomplhlgncccbnpfdpm
Официальный URL https://chromewebstore.google.com/detail/add-to-omnifocus-for-gmai/ihgdbplidfgbloomplhlgncccbnpfdpm
Описание Adds a button to Gmail threads to add them to OmniFocus, including a link to the message.
Размер файла 53.15 KB
Количество установок 1,052
Текущая Версия 1.1.2
Последнее Обновление 2020-07-09
Дата публикации 2019-07-22
Рейтинг 3.50/5 Всего 8 оценок
Разработчик https://schof.co
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://schof.co
URL страницы помощи https://schof.co/?utm_source=gmail-omnifocus
URL страницы политики конфиденциальности https://infowijs.nl/privacy?r=google-webstore
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add to OmniFocus for Gmail",
    "short_name": "OmniFocus",
    "version": "1.1.2",
    "description": "Adds a button to Gmail threads to add them to OmniFocus, 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
}