Kompassify Builder

Build Product tours without coding.

Kompassify Builder là gì?

Kompassify Builder là một tiện ích mở rộng Chrome được phát triển bởi https://kompassify.com, và tính năng chính của nó là "Build Product tours without coding.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Kompassify Builder 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

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

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

Tên Kompassify Builder Kompassify Builder
ID cekmphbdlnghklnaofdhfkdiinjjfnoc
URL Chính Thức https://chromewebstore.google.com/detail/kompassify-builder/cekmphbdlnghklnaofdhfkdiinjjfnoc
Mô tả Build Product tours without coding.
Kích Thước Tệp 21.76 KB
Số Lần Cài Đặt 476
Phiên Bản Hiện Tại 3.0.2
Cập Nhật Lần Cuối 2023-11-15
Ngày Phát Hành 2020-02-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://kompassify.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kompassify.com
URL Trang Trợ Giúp https://kompassify.com/contact
URL Trang Chính Sách Bảo Mật https://kompassify.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}