Desktop Screen Recorder

Record the computer's screen, entire application or a single browser tab with audio support

Τι είναι το Desktop Screen Recorder;

Το Desktop Screen Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον brian.girko, και η κύρια λειτουργία του είναι "Record the computer's screen, entire application or a single browser tab with audio support".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Desktop Screen Recorder

Λήψη αρχείων επέκτασης Desktop Screen Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Desktop Screen Record is a powerful recording tool that captures the screen for sharing content. 

This extension has three modes: 
1. Capture the entire screen. This mode supports monitor selection if more than one display is detected.
2. Application window capturing. It only captures one application's window, and the video size would be equal to the application's window size. 
3. Browser tab mode. The extension captures the content of one browser tab only. You can optionally switch to a different tab during the recording

This extension can record in HD quality if the recording is placed on a high-quality LCD monitor. Also, it supports audio recording. The user can either ask the extension to record the system sound (whatever is playing in the background) or use the user's microphone device for recording. The output format of the media files is the WebM format, which is the best choice for media sharing due to its compression level and real-time rendering.

Features:
1. It is possible to use this extension to record long screen captures since it directly writes chunks to the disk while recording.
2. Recover recordings in case of a browser crash.
3. Use a built-in tool to draw or write during the presentation
4. Record audio from speaker, microphone, or both
5. Adjust video quality (HD, Medium, Low, or Default)
6. Define global shortcuts to pause, resume, or stop recording.
7. Record as long as you need. There is no watermark on the recording
8. Writes the stream directly to the disk. There is no need for recovery after a possible browser crash.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Desktop Screen Recorder Desktop Screen Recorder
ID chjblpopkoelbkolfboniibdhjmlkphf
Επίσημο URL https://chromewebstore.google.com/detail/desktop-screen-recorder/chjblpopkoelbkolfboniibdhjmlkphf
Περιγραφή Record the computer's screen, entire application or a single browser tab with audio support
Μέγεθος Αρχείου 277 KB
Αριθμός Εγκαταστάσεων 12,013
Τρέχουσα Έκδοση 0.3.1
Τελευταία Ενημέρωση 2023-05-08
Ημερομηνία Δημοσίευσης 2020-06-02
Αξιολόγηση 4.00/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής brian.girko
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/screen-record.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/screen-record.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.3.1",
    "name": "Desktop Screen Recorder",
    "description": "Record the computer's screen, entire application or a single browser tab with audio support",
    "permissions": [
        "desktopCapture",
        "storage",
        "notifications",
        "unlimitedStorage",
        "contextMenus"
    ],
    "optional_permissions": [
        "activeTab",
        "scripting"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/screen-record.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/window\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": [],
        "pause-recording": {
            "description": "Pause recording with a keyboard shortcut"
        },
        "resume-recording": {
            "description": "Resume recording with a keyboard shortcut"
        },
        "stop-recording": {
            "description": "Stop recording with a keyboard shortcut"
        }
    }
}