Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

Qu'est-ce que Video Note & Screenshot ?

Video Note & Screenshot est une extension Chrome développée par Gemoo Inc., et sa fonction principale est "Go to take YouTube notes or screenshot YouTube.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Video Note & Screenshot

Téléchargez les fichiers d'extension Video Note & Screenshot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Video Note & Screenshot Video Note & Screenshot
ID miedbfijmibcgjjmhdccocldliepbfng
URL Officiel https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng
Description Go to take YouTube notes or screenshot YouTube.
Taille du Fichier 16.58 KB
Nombre d'Installations 5,319
Version Actuelle 1.0.3
Dernière Mise à Jour 2023-08-15
Date de Publication 2023-06-18
Évaluation 5.00/5 Total 1 Évaluations
Développeur Gemoo Inc.
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://gemoo.com/tools/video-note-taking
URL de la Page d'Aide https://gemoo.com/support/
URL de la Page de Politique de Confidentialité https://gemoo.com/privacy-policy
Langues Prises en Charge 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}