Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

Τι είναι το Video Note & Screenshot;

Το Video Note & Screenshot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Gemoo Inc., και η κύρια λειτουργία του είναι "Go to take YouTube notes or screenshot YouTube.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Note & Screenshot

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

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

                        This tool helps you take screenshots from a YouTube video and extract text from the video.

Check the main features:

1.Video Transcription 
Transcribe video to text by extracting the subtitles/closed captions.

2.Extract Text from Video Screenshots
Take screenshots from the video and use the OCR function to extract text information from the video's screenshots.

3. Take screenshots from YouTube Video quickly.                    

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

Όνομα Video Note & Screenshot Video Note & Screenshot
ID miedbfijmibcgjjmhdccocldliepbfng
Επίσημο URL https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng
Περιγραφή Go to take YouTube notes or screenshot YouTube.
Μέγεθος Αρχείου 16.58 KB
Αριθμός Εγκαταστάσεων 5,319
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2023-08-15
Ημερομηνία Δημοσίευσης 2023-06-18
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Gemoo Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://gemoo.com/tools/video-note-taking
Διεύθυνση URL της Σελίδας Βοήθειας https://gemoo.com/support/
URL της Σελίδας Πολιτικής Απορρήτου https://gemoo.com/privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Note & Screenshot",
    "description": "Go to take YouTube notes or screenshot YouTube.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "scripting",
        "downloads"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "https:\/\/*.gemoo.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "action": {
        "default_title": "Video Note & Screenshot",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.gemoo.com\/*"
            ],
            "css": [
                "assets\/content.css"
            ],
            "js": [
                "my-content-script.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}