ScreenRun

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

ScreenRun là gì?

ScreenRun là một tiện ích mở rộng Chrome được phát triển bởi https://screenrun.app, và tính năng chính của nó là "Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app".

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

screenshot

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

Tải xuống các tệp mở rộng ScreenRun 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

                        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.                    

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

Tên ScreenRun ScreenRun
ID ohpjpoojklgnlhpfjhpekhpoapjinjfb
URL Chính Thức https://chromewebstore.google.com/detail/screenrun/ohpjpoojklgnlhpfjhpekhpoapjinjfb
Mô tả Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app
Kích Thước Tệp 25.76 KB
Số Lần Cài Đặt 149
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-04-26
Ngày Phát Hành 2023-04-26
Nhà Phát Triển https://screenrun.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://screenrun.app
URL Trang Trợ Giúp https://screenrun.app/help
URL Trang Chính Sách Bảo Mật https://www.appblit.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}