CommandBar Editor

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

Wat is CommandBar Editor?

CommandBar Editor is een Chrome-extensie ontwikkeld door https://commandbar.com, en de belangrijkste functie is "Load the CommandBar Editor in your app to preview the experience for your users.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CommandBar Editor

Download CommandBar Editor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam CommandBar Editor CommandBar Editor
ID diahhhkcbpeijifhedabbjgepdgdpkcj
Officiële URL https://chromewebstore.google.com/detail/commandbar-editor/diahhhkcbpeijifhedabbjgepdgdpkcj
Beschrijving Load the CommandBar Editor in your app to preview the experience for your users.
Bestandsgrootte 566 KB
Aantal Installaties 770
Huidige Versie 1.0.8
Laatst Bijgewerkt 2024-02-13
Publicatiedatum 2024-02-13
Beoordeling 5.00/5 Totaal 12 Beoordelingen
Ontwikkelaar https://commandbar.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://commandbar.com
Help Pagina-URL https://commandbar.com/docs
Ondersteunde Talen 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"
    ]
}