Howflow Beta

Create easily shareable step-by-step guides in seconds

Howflow Beta là gì?

Howflow Beta là một tiện ích mở rộng Chrome được phát triển bởi https://howflow.io, và tính năng chính của nó là "Create easily shareable step-by-step guides in seconds".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Howflow Beta

Tải xuống các tệp mở rộng Howflow Beta dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Howflow Beta Howflow Beta
ID mjgpnnljneofeojfgdacdlcnbcgboaio
URL Chính Thức https://chromewebstore.google.com/detail/howflow-beta/mjgpnnljneofeojfgdacdlcnbcgboaio
Mô tả Create easily shareable step-by-step guides in seconds
Kích Thước Tệp 58.58 KB
Số Lần Cài Đặt 333
Phiên Bản Hiện Tại 0.0.0.6
Cập Nhật Lần Cuối 2022-10-10
Ngày Phát Hành 2022-03-31
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://howflow.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://howflow.io
URL Trang Chính Sách Bảo Mật https://supademo.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}