LiveDemo App

A chrome extension for product-led growth and for recording Live Demos

Cos'è LiveDemo App?

LiveDemo App è un'estensione di Chrome sviluppata da https://livedemo.live, e la sua funzione principale è "A chrome extension for product-led growth and for recording Live Demos".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione LiveDemo App

Scarica i file di estensione LiveDemo App in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Live Demo Chrome extension used to record websites and create interactive livedemos from the recordings                    

Informazioni di Base sull'Estensione

Nome LiveDemo App LiveDemo App
ID dnlnaeifccbhdnbppjjgleapjadjklbe
URL Ufficiale https://chromewebstore.google.com/detail/livedemo-app/dnlnaeifccbhdnbppjjgleapjadjklbe
Descrizione A chrome extension for product-led growth and for recording Live Demos
Dimensione del File 1.17 MB
Conteggio Installazioni 56
Versione Corrente 1.0.22
Ultimo Aggiornamento 2023-11-21
Data di Pubblicazione 2022-06-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://livedemo.live
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://livedemo.ai
URL della Pagina di Aiuto https://livedemo.ai
URL della Pagina della Politica sulla Privacy https://livedemo.ai/terms/index.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension for product-led growth and for recording Live Demos",
    "version": "1.0.22",
    "manifest_version": 3,
    "name": "LiveDemo App",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "logo-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "tabCapture",
        ""
    ],
    "icons": {
        "128": "logo-128.png"
    },
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "match_origin_as_fallback": true,
            "all_frames": true
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/localhost.mine\/*",
            "*:\/\/app.livedemo.ai\/*",
            "*:\/\/app-staging.livedemo.ai\/*"
        ]
    },
    "devtools_page": "devtools.html",
    "commands": {
        "capturePage": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Command+S",
                "chromeos": "Alt+S",
                "linux": "Alt+S"
            },
            "description": "Capture the current web page"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "takeScreenshot.bundle.js",
                "takeVideo.bundle.js",
                "captureScript.bundle.js",
                "injectScript.js",
                "helperTab.html",
                "topScript.bundle.js",
                "frameScript.bundle.js",
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "logo-128.png",
                "logo-round.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}