Conpass Builder

User Engagement flows builder, for Conpass customers

Cos'è Conpass Builder?

Conpass Builder è un'estensione di Chrome sviluppata da https://app.conpass.io, e la sua funzione principale è "User Engagement flows builder, for Conpass customers".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Conpass Builder

Scarica i file di estensione Conpass Builder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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).                    

Informazioni di Base sull'Estensione

Nome Conpass Builder Conpass Builder
ID bmicebkolhboilnckecejkcodkokkidi
URL Ufficiale https://chromewebstore.google.com/detail/conpass-builder/bmicebkolhboilnckecejkcodkokkidi
Descrizione User Engagement flows builder, for Conpass customers
Dimensione del File 1.83 MB
Conteggio Installazioni 1,131
Versione Corrente 1.70.65
Ultimo Aggiornamento 2023-08-15
Data di Pubblicazione 2021-02-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://app.conpass.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://conpass.io
URL della Pagina di Aiuto http://conpass.io
Lingue Supportate 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'"
    }
}