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文件

下載CommandBar Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}