CommandBar Editor

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

Τι είναι το CommandBar Editor;

Το CommandBar Editor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://commandbar.com, και η κύρια λειτουργία του είναι "Load the CommandBar Editor in your app to preview the experience for your users.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης CommandBar Editor

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    ]
}