Chameleon Builder
Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.
Was ist Chameleon Builder?
Chameleon Builder ist eine Chrome-Erweiterung, die von https://trychameleon.com entwickelt wurde, und ihr Hauptmerkmal ist "Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.".
Erweiterungsscreenshots
Chameleon Builder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chameleon Builder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Chameleon Builder |
ID | lfckcgkphfglcodbedlpkkkkjicbngpe |
Offizielle URL | https://chromewebstore.google.com/detail/chameleon-builder/lfckcgkphfglcodbedlpkkkkjicbngpe |
Beschreibung | Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding. |
Dateigröße | 360 KB |
Installationsanzahl | 6,638 |
Aktuelle Version | 3.2.7 |
Letztes Update | 2024-02-01 |
Veröffentlichungsdatum | 2020-01-14 |
Bewertung | 4.75/5 Insgesamt 12 Bewertungen |
Entwickler | https://trychameleon.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://trychameleon.com/ |
Hilfeseite URL | https://help.trychameleon.com/ |
URL der Datenschutzrichtlinien-Seite | https://www.trychameleon.com/privacy |
Unterstützte Sprachen | 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." } |