LiveDemo App

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

LiveDemo App란 무엇입니까?

LiveDemo App은(는) https://livedemo.live에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for product-led growth and for recording Live Demos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

LiveDemo App 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 LiveDemo App LiveDemo App
ID dnlnaeifccbhdnbppjjgleapjadjklbe
공식 URL https://chromewebstore.google.com/detail/livedemo-app/dnlnaeifccbhdnbppjjgleapjadjklbe
설명 A chrome extension for product-led growth and for recording Live Demos
파일 크기 1.17 MB
설치 횟수 56
현재 버전 1.0.22
최근 업데이트 2023-11-21
출시 날짜 2022-06-02
평점 5.00/5 총 1 개의 평점
개발자 https://livedemo.live
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://livedemo.ai
도움말 페이지 URL https://livedemo.ai
개인정보 보호 정책 페이지 URL https://livedemo.ai/terms/index.html
지원되는 언어 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}