CommandBar Editor

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

O que é CommandBar Editor?

CommandBar Editor é uma extensão do Chrome desenvolvida por https://commandbar.com, e sua principal característica é "Load the CommandBar Editor in your app to preview the experience for your users.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CommandBar Editor

Baixe arquivos de extensão CommandBar Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome CommandBar Editor CommandBar Editor
ID diahhhkcbpeijifhedabbjgepdgdpkcj
URL Oficial https://chromewebstore.google.com/detail/commandbar-editor/diahhhkcbpeijifhedabbjgepdgdpkcj
Descrição Load the CommandBar Editor in your app to preview the experience for your users.
Tamanho do Arquivo 566 KB
Contagem de Instalações 770
Versão Atual 1.0.8
Última Atualização 2024-02-13
Data de Publicação 2024-02-13
Classificação 5.00/5 Total de 12 Avaliações
Desenvolvedor https://commandbar.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://commandbar.com
URL da Página de Ajuda https://commandbar.com/docs
Idiomas Suportados 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"
    ]
}