Howflow Beta

Create easily shareable step-by-step guides in seconds

Howflow Beta란 무엇입니까?

Howflow Beta은(는) https://howflow.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create easily shareable step-by-step guides in seconds"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Howflow Beta 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Howflow is an easy and powerful tool to create step-by-step guides.

It captures every action made in your product while you work like mouse clicks and keystrokes and automatically generates how-tos in seconds.

And yes, the demos created by you can be easily shared with your teammates or clients.

Our Google Chrome extension will work on top of your website and record your clicks and keystrokes as you proceed chronologically. After you stop recording, it will automatically create a guide including the screenshots of the screens and the texts typed during that time.

Once the recording is ready, you can customize it by zooming in/out the screenshots or adding annotation texts.

That’s it! You are all set to start sharing this demo with anyone with an easily shareable link.                    

확장 프로그램 기본 정보

이름 Howflow Beta Howflow Beta
ID mjgpnnljneofeojfgdacdlcnbcgboaio
공식 URL https://chromewebstore.google.com/detail/howflow-beta/mjgpnnljneofeojfgdacdlcnbcgboaio
설명 Create easily shareable step-by-step guides in seconds
파일 크기 58.58 KB
설치 횟수 333
현재 버전 0.0.0.6
최근 업데이트 2022-10-10
출시 날짜 2022-03-31
평점 5.00/5 총 1 개의 평점
개발자 https://howflow.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://howflow.io
개인정보 보호 정책 페이지 URL https://supademo.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Howflow Beta",
    "short_name": "Howflow",
    "version": "0.0.0.6",
    "manifest_version": 3,
    "description": "Create easily shareable step-by-step guides in seconds",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Howflow Beta",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "scripting",
        "activeTab",
        "tabs",
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/hello.html",
                "pages\/hello.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:3000\/*",
                "*:\/\/app.howflow.io\/*",
                "*:\/\/howflow.io\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentscripts\/append_tab_menu.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/app.supademo.com\/*",
            "http:\/\/localhost:3000\/*",
            "*:\/\/app.howflow.io\/*",
            "*:\/\/howflow.io\/*"
        ]
    },
    "icons": {
        "16": "\/assets\/images\/supademo_icon_16.png",
        "48": "\/assets\/images\/supademo_icon_48.png",
        "128": "\/assets\/images\/supademo_icon_128.png"
    }
}