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文件

下載Howflow Beta擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}