Chameleon Builder
Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.
Что такое Chameleon Builder?
Chameleon Builder - это расширение Chrome, разработанное https://trychameleon.com, и его основная функция - "Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.".
Снимки экрана расширения
Скачать файл CRX расширения Chameleon Builder
Скачайте файлы расширений Chameleon Builder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Chameleon Builder |
ID | lfckcgkphfglcodbedlpkkkkjicbngpe |
Официальный URL | https://chromewebstore.google.com/detail/chameleon-builder/lfckcgkphfglcodbedlpkkkkjicbngpe |
Описание | Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding. |
Размер файла | 360 KB |
Количество установок | 6,638 |
Текущая Версия | 3.2.7 |
Последнее Обновление | 2024-02-01 |
Дата публикации | 2020-01-14 |
Рейтинг | 4.75/5 Всего 12 оценок |
Разработчик | https://trychameleon.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://trychameleon.com/ |
URL страницы помощи | https://help.trychameleon.com/ |
URL страницы политики конфиденциальности | https://www.trychameleon.com/privacy |
Поддерживаемые языки | 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." } |