Chameleon Builder

Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.

Cos'è Chameleon Builder?

Chameleon Builder è un'estensione di Chrome sviluppata da https://trychameleon.com, e la sua funzione principale è "Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Chameleon Builder

Scarica i file di estensione Chameleon 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

                        Use Chameleon Experiences to:
Collect real-time feedback
Help new users onboard and activate 
Convert free triallers to paid
Drive awareness and discovery of new features

This Chrome Extension enables you to use the Chameleon Builder to build and preview Chameleon Experiences. 

Learn more about the Extension here: https://help.trychameleon.com/en/articles/1204283-what-does-the-chrome-extension-do
Learn more about Chameleon here: https://www.trychameleon.com                    

Informazioni di Base sull'Estensione

Nome Chameleon Builder Chameleon Builder
ID lfckcgkphfglcodbedlpkkkkjicbngpe
URL Ufficiale https://chromewebstore.google.com/detail/chameleon-builder/lfckcgkphfglcodbedlpkkkkjicbngpe
Descrizione Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.
Dimensione del File 360 KB
Conteggio Installazioni 6,638
Versione Corrente 3.2.7
Ultimo Aggiornamento 2024-02-01
Data di Pubblicazione 2020-01-14
Valutazione 4.75/5 Totale 12 Valutazioni
Sviluppatore https://trychameleon.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://trychameleon.com/
URL della Pagina di Aiuto https://help.trychameleon.com/
URL della Pagina della Politica sulla Privacy https://www.trychameleon.com/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_title": "Chameleon Builder",
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.chameleon.io\/*",
                "https:\/\/app.trychameleon.com\/*"
            ],
            "js": [
                "js\/content\/app.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content\/end.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "externally_connectable": {
        "ids": [],
        "matches": [
            "https:\/\/*.chameleon.io\/*",
            "https:\/\/*.trychameleon.com\/*"
        ]
    },
    "permissions": [
        "https:\/\/*\/*",
        "tabs"
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "name": "Chameleon Builder",
    "short_name": "Chameleon Builder",
    "version": "3.2.7",
    "description": "Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding."
}