Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

Video Note & Screenshot là gì?

Video Note & Screenshot là một tiện ích mở rộng Chrome được phát triển bởi Gemoo Inc., và tính năng chính của nó là "Go to take YouTube notes or screenshot YouTube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Note & Screenshot

Tải xuống các tệp mở rộng Video Note & Screenshot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Note & Screenshot Video Note & Screenshot
ID miedbfijmibcgjjmhdccocldliepbfng
URL Chính Thức https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng
Mô tả Go to take YouTube notes or screenshot YouTube.
Kích Thước Tệp 16.58 KB
Số Lần Cài Đặt 5,319
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-08-15
Ngày Phát Hành 2023-06-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Gemoo Inc.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gemoo.com/tools/video-note-taking
URL Trang Trợ Giúp https://gemoo.com/support/
URL Trang Chính Sách Bảo Mật https://gemoo.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}