CommandBar Editor

Load the CommandBar Editor in your app to preview the experience for your users.

CommandBar Editor란 무엇입니까?

CommandBar Editor은(는) https://commandbar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load the CommandBar Editor in your app to preview the experience for your users."입니다.

확장 프로그램 스크린샷

screenshot

CommandBar Editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension lets you load the CommandBar Editor in your app, so you can step into the shoes of a user and preview any experiences you've already created. Plus, you can edit those experiences right in your app. This is particularly useful when you want to edit → test → edit → test, etc.

If you don't know what CommandBar is…

CommandBar is an intelligent layer that product, growth, marketing, and customer teams use to personalize their apps for every user. You can install a Magic Searchbar that lets users search to find their way, a HelpHub to find relevant help content (docs, videos) in-app, product tours, feature announcements, checklists, and surveys. They all feel 100% native, delightfully designed, respect the user, and are configurable without code (if that's your jam) or with a lightweight client-side SDK.

Sign up for a free account and turbocharge your UX in an afternoon here: https://www.commandbar.com/get-started                    

확장 프로그램 기본 정보

이름 CommandBar Editor CommandBar Editor
ID diahhhkcbpeijifhedabbjgepdgdpkcj
공식 URL https://chromewebstore.google.com/detail/commandbar-editor/diahhhkcbpeijifhedabbjgepdgdpkcj
설명 Load the CommandBar Editor in your app to preview the experience for your users.
파일 크기 566 KB
설치 횟수 770
현재 버전 1.0.8
최근 업데이트 2024-02-13
출시 날짜 2024-02-13
평점 5.00/5 총 12 개의 평점
개발자 https://commandbar.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://commandbar.com
도움말 페이지 URL https://commandbar.com/docs
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CommandBar Editor",
    "version": "1.0.8",
    "manifest_version": 2,
    "description": "Load the CommandBar Editor in your app to preview the experience for your users.",
    "icons": {
        "512": "commandbar_icon.png"
    },
    "browser_action": {
        "default_icon": "commandbar_icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/mainContent.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/app.commandbar.com\/*",
            "https:\/\/labs.commandbar.com\/*",
            "https:\/\/frames-editor-prod.commandbar.com\/*",
            "https:\/\/frames-editor-labs.commandbar.com\/*",
            "https:\/\/frames-editor-stable.commandbar.com\/*"
        ]
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "externally_connectable",
        "webRequest",
        "webRequestBlocking"
    ]
}