ScreenRun

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

ScreenRun क्या है?

ScreenRun https://screenrun.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ScreenRun एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}