Conpass Builder

User Engagement flows builder, for Conpass customers

Conpass Builder란 무엇입니까?

Conpass Builder은(는) https://app.conpass.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "User Engagement flows builder, for Conpass customers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Conpass Builder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        User Engagement flows builder, for Conpass customers. With this extension, our customers are able to create guided tours in order to engage their users, removing points of friction from their customer journey with no code required.

It will only be possible to use this extension with the login from Conpass App (www.conpass.io).                    

확장 프로그램 기본 정보

이름 Conpass Builder Conpass Builder
ID bmicebkolhboilnckecejkcodkokkidi
공식 URL https://chromewebstore.google.com/detail/conpass-builder/bmicebkolhboilnckecejkcodkokkidi
설명 User Engagement flows builder, for Conpass customers
파일 크기 1.83 MB
설치 횟수 1,131
현재 버전 1.70.65
최근 업데이트 2023-08-15
출시 날짜 2021-02-11
평점 5.00/5 총 1 개의 평점
개발자 https://app.conpass.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://conpass.io
도움말 페이지 URL http://conpass.io
지원되는 언어 en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Conpass Builder",
    "description": "User Engagement flows builder, for Conpass customers",
    "version": "1.70.65",
    "short_name": "Conpass",
    "homepage_url": "https:\/\/conpass.io\/",
    "default_locale": "en",
    "action": {
        "default_title": "Conpass Builder",
        "default_icon": "assets\/icon_off.png"
    },
    "icons": {
        "128": "assets\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "assets\/*.png",
                "assets\/css\/*.css",
                "assets\/*.svg",
                "assets\/*.woff2",
                "myscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "identity",
        "tabs",
        "scripting",
        "storage",
        "runtime",
        "extension",
        "unlimitedStorage"
    ],
    "optional_permissions": [],
    "host_permissions": [
        "*:\/\/app.conpass.io\/*"
    ],
    "optional_host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/app.conpass.io\/*"
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}