Kompassify Builder

Build Product tours without coding.

Was ist Kompassify Builder?

Kompassify Builder ist eine Chrome-Erweiterung, die von https://kompassify.com entwickelt wurde, und ihr Hauptmerkmal ist "Build Product tours without coding.".

Erweiterungsscreenshots

screenshot
screenshot

Kompassify Builder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kompassify Builder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        With kompassify you can create in-app product walkthroughs to guide your users and help them understand your product.                    

Grundlegende Informationen zur Erweiterung

Name Kompassify Builder Kompassify Builder
ID cekmphbdlnghklnaofdhfkdiinjjfnoc
Offizielle URL https://chromewebstore.google.com/detail/kompassify-builder/cekmphbdlnghklnaofdhfkdiinjjfnoc
Beschreibung Build Product tours without coding.
Dateigröße 21.76 KB
Installationsanzahl 476
Aktuelle Version 3.0.2
Letztes Update 2023-11-15
Veröffentlichungsdatum 2020-02-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://kompassify.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://kompassify.com
Hilfeseite URL https://kompassify.com/contact
URL der Datenschutzrichtlinien-Seite https://kompassify.com/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.0.2",
    "short_name": "Kompassify",
    "manifest_version": 3,
    "name": "Kompassify Builder",
    "description": "Build Product tours without coding.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Kompassify Builder",
        "default_icon": "icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/*.kompassify.com' 'https:\/\/*.kompassify.app'"
    }
}