ScreenRun

Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app

ScreenRunとは何ですか?

ScreenRunはhttps://screenrun.appによって開発されたChromeの拡張機能で、その主な機能は「Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app」です。

拡張機能のスクリーンショット

screenshot

ScreenRun拡張機能のCRXファイルをダウンロード

ScreenRun拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ScreenRun helps you capture tabs by recording your clicks. It is meant as a companion to the ScreenRun web application.
In the ScreenRun studio (https://screenrun.app/studio) click "Screen" to pick the tab or browser window you would like to record.
During the recording, the extension remembers where and when you click.
When you are finished recording, the extension will make the mouse events available to the ScreenRun Studio web application to automatically place your points, saving you a lot of time because you will not have to place the zoom points manually.                    

拡張機能の基本情報

名前 ScreenRun ScreenRun
ID ohpjpoojklgnlhpfjhpekhpoapjinjfb
公式URL https://chromewebstore.google.com/detail/screenrun/ohpjpoojklgnlhpfjhpekhpoapjinjfb
説明 Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app
ファイルサイズ 25.76 KB
インストール数 149
現在のバージョン 1.1.1
最終更新日 2023-04-26
公開日 2023-04-26
開発者 https://screenrun.app
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://screenrun.app
ヘルプページのURL https://screenrun.app/help
プライバシーポリシーページのURL https://www.appblit.com/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScreenRun",
    "author": "ScreenRun LLC",
    "manifest_version": 3,
    "version": "1.1.1",
    "description": "Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app",
    "options_page": "welcome.html",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8080\/studio",
                "https:\/\/screenrun.app\/studio"
            ],
            "js": [
                "screenrun.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "action": [],
    "icons": {
        "16": "icons\/off.png",
        "128": "icons\/off.png",
        "48": "icons\/off.png"
    }
}