SmartGMAIL NXT

Allows quick email to action recording in Raiser's Edge NXT

Что такое SmartGMAIL NXT?

SmartGMAIL NXT - это расширение Chrome, разработанное https://smartthing.org, и его основная функция - "Allows quick email to action recording in Raiser's Edge NXT".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения SmartGMAIL NXT

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

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

                        Provides integration between Raiser's Edge NXT and GMail to enable users to create NXT actions from email data.

 • Fast and easy to use - add actions with couple of clicks!

 • Allows users to customise action type, date, summary, text and status within NXT

 • Supports multiple email addresses

Supported Platforms: Raisers Edge NXT, GMail

If you have any queries or issues, please contact us through our helpdesk - [email protected]                    

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

Название SmartGMAIL NXT SmartGMAIL NXT
ID ifibojlibkgjcllojmhmhigkmedffnik
Официальный URL https://chromewebstore.google.com/detail/smartgmail-nxt/ifibojlibkgjcllojmhmhigkmedffnik
Описание Allows quick email to action recording in Raiser's Edge NXT
Размер файла 115 KB
Количество установок 126
Текущая Версия 4.1
Последнее Обновление 2023-09-08
Дата публикации 2020-02-03
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://smartthing.org
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://smartthing.org/smartgmail
URL страницы помощи https://support.smartthing.org
URL страницы политики конфиденциальности https://www.smartthing.org/privacy-policy
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SmartGMAIL NXT",
    "version": "4.1",
    "manifest_version": 3,
    "description": "Allows quick email to action recording in Raiser's Edge NXT",
    "icons": {
        "16": "resources\/gmail.png",
        "48": "resources\/gmail.png",
        "128": "resources\/gmail.png"
    },
    "background": {
        "service_worker": "js\/back.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/renxt.blackbaud.com\/*",
                "https:\/\/host.nxt.blackbaud.com\/*"
            ],
            "js": [
                "js\/core.js"
            ],
            "css": [
                "css\/lib\/nxt.css",
                "css\/lib\/settings.css",
                "css\/gmail.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/lib\/jquery.min.js",
                "resources\/bIcon.png",
                "resources\/x.png",
                "resources\/newwin.png",
                "js\/nxt_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": "resources\/gmail.png"
    },
    "content_security_policy": []
}