Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

什麼是Video Note & Screenshot?

Video Note & Screenshot是由Gemoo Inc.開發的Chrome擴展程式,該擴展的主要功能是“Go to take YouTube notes or screenshot YouTube.”。

擴展截圖

screenshot
screenshot
screenshot

下載Video Note & Screenshot擴展crx文件

下載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
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}