Mautic Helper

Mautic Helper Extension

Что такое Mautic Helper?

Mautic Helper - это расширение Chrome, разработанное virlatinus, и его основная функция - "Mautic Helper Extension".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension keeps track of the contacts timeline in Mautic. 
It also adds the option to track emails sent from Gmail.                    

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

Название Mautic Helper Mautic Helper
ID glpjomjkomefedfilfhgoijnfkneifje
Официальный URL https://chromewebstore.google.com/detail/mautic-helper/glpjomjkomefedfilfhgoijnfkneifje
Описание Mautic Helper Extension
Размер файла 1.03 MB
Количество установок 760
Текущая Версия 0.9.4
Последнее Обновление 2016-10-13
Дата публикации 2016-10-13
Рейтинг 2.71/5 Всего 17 оценок
Разработчик virlatinus
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.mautic.org
URL страницы помощи https://github.com/virlatinus/Mautic-Documentation/blob/GmailPlugin/plugins/gmail.md
Поддерживаемые языки en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "includes\/content.js"
            ]
        }
    ],
    "name": "Mautic Helper",
    "default_locale": "en",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/button.png"
    },
    "web_accessible_resources": [
        "res\/*",
        "assets\/*",
        "icons\/*"
    ],
    "description": "Mautic Helper Extension",
    "background": {
        "page": "background.html"
    },
    "homepage_url": "http:\/\/mautic.com",
    "version": "0.9.4",
    "options_page": "pages\/options.html",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "icons\/button_d.png",
        "default_title": "Mautic Helper Extension"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "webNavigation",
        "notifications"
    ]
}