Kompassify Builder

Build Product tours without coding.

Что такое Kompassify Builder?

Kompassify Builder - это расширение Chrome, разработанное https://kompassify.com, и его основная функция - "Build Product tours without coding.".

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

screenshot
screenshot

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

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

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

                        With kompassify you can create in-app product walkthroughs to guide your users and help them understand your product.                    

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

Название Kompassify Builder Kompassify Builder
ID cekmphbdlnghklnaofdhfkdiinjjfnoc
Официальный URL https://chromewebstore.google.com/detail/kompassify-builder/cekmphbdlnghklnaofdhfkdiinjjfnoc
Описание Build Product tours without coding.
Размер файла 21.76 KB
Количество установок 476
Текущая Версия 3.0.2
Последнее Обновление 2023-11-15
Дата публикации 2020-02-22
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://kompassify.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://kompassify.com
URL страницы помощи https://kompassify.com/contact
URL страницы политики конфиденциальности https://kompassify.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.0.2",
    "short_name": "Kompassify",
    "manifest_version": 3,
    "name": "Kompassify Builder",
    "description": "Build Product tours without coding.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Kompassify Builder",
        "default_icon": "icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/*.kompassify.com' 'https:\/\/*.kompassify.app'"
    }
}