Youtube video summaries - Powered by ChatGPT

Get Youtube video summaries before watching them, so you know instantly if they're worth watching.

Youtube video summaries - Powered by ChatGPT là gì?

Youtube video summaries - Powered by ChatGPT là một tiện ích mở rộng Chrome được phát triển bởi YoutubeSummaries, và tính năng chính của nó là "Get Youtube video summaries before watching them, so you know instantly if they're worth watching.".

Ả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 Youtube video summaries - Powered by ChatGPT

Tải xuống các tệp mở rộng Youtube video summaries - Powered by ChatGPT 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 extension lets you view a brief summary of a youtube video before watching it, so you can avoid clickbait content or quickly get the gist of a video.

These summaries are generated by ChatGPT and anyone logged into their ChatGPT account can generate a summary - completely free!

Simply mouse over any video title to view its summary. Right click on a title to view options to generate or downvote a summary in the pop-up menu that appears.                    

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

Tên Youtube video summaries - Powered by ChatGPT Youtube video summaries - Powered by ChatGPT
ID bajbfiocljodaddcdfkndlmgjbjbmjkf
URL Chính Thức https://chromewebstore.google.com/detail/youtube-video-summaries-p/bajbfiocljodaddcdfkndlmgjbjbmjkf
Mô tả Get Youtube video summaries before watching them, so you know instantly if they're worth watching.
Kích Thước Tệp 36.1 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 0.2.3
Cập Nhật Lần Cuối 2023-07-21
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 YoutubeSummaries
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube video summaries - Powered by ChatGPT",
    "version": "0.2.3",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "description": "Get Youtube video summaries before watching them, so you know instantly if they're worth watching.",
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentscripts\/content.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentscripts\/ytContent.bundle.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "48": "images\/icon48.png"
        }
    }
}