Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

Wat is Video Note & Screenshot?

Video Note & Screenshot is een Chrome-extensie ontwikkeld door Gemoo Inc., en de belangrijkste functie is "Go to take YouTube notes or screenshot YouTube.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Video Note & Screenshot

Download Video Note & Screenshot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Video Note & Screenshot Video Note & Screenshot
ID miedbfijmibcgjjmhdccocldliepbfng
Officiële URL https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng
Beschrijving Go to take YouTube notes or screenshot YouTube.
Bestandsgrootte 16.58 KB
Aantal Installaties 5,319
Huidige Versie 1.0.3
Laatst Bijgewerkt 2023-08-15
Publicatiedatum 2023-06-18
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Gemoo Inc.
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://gemoo.com/tools/video-note-taking
Help Pagina-URL https://gemoo.com/support/
URL van de Privacybeleid Pagina https://gemoo.com/privacy-policy
Ondersteunde Talen 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}