Mautic Helper

Mautic Helper Extension

Mautic Helper là gì?

Mautic Helper là một tiện ích mở rộng Chrome được phát triển bởi virlatinus, và tính năng chính của nó là "Mautic Helper Extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mautic Helper

Tải xuống các tệp mở rộng Mautic Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mautic Helper Mautic Helper
ID glpjomjkomefedfilfhgoijnfkneifje
URL Chính Thức https://chromewebstore.google.com/detail/mautic-helper/glpjomjkomefedfilfhgoijnfkneifje
Mô tả Mautic Helper Extension
Kích Thước Tệp 1.03 MB
Số Lần Cài Đặt 760
Phiên Bản Hiện Tại 0.9.4
Cập Nhật Lần Cuối 2016-10-13
Ngày Phát Hành 2016-10-13
Đánh Giá 2.71/5 Tổng số 17 Đánh Giá
Nhà Phát Triển virlatinus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.mautic.org
URL Trang Trợ Giúp https://github.com/virlatinus/Mautic-Documentation/blob/GmailPlugin/plugins/gmail.md
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}