YouTube Clickbait-Buster

Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.

YouTube Clickbait-Buster là gì?

YouTube Clickbait-Buster là một tiện ích mở rộng Chrome được phát triển bởi BLBC, và tính năng chính của nó là "Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Clickbait-Buster

Tải xuống các tệp mở rộng YouTube Clickbait-Buster 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

                        Sometimes you see a video in your recommendations with an interesting title or eye-catching thumbnail and clicks on it, just to find out the content wasn't what you were expecting or it was a clickbait. This extension enables you to take a closer look on the video content before actually clicking on it, by peeking the:

- Video content
- Audio transcription or subtitles
- Description
- Comments
- Channel

You can also view the:

- Thumbnail in the highest resolution available
- Full titles

To do that, you just need to click on the recommended video's menu (the three dots button) and choose the option you want. It works on pretty much all pages, and is compatible with both YouTube's desktop and mobile layouts, and dark theme.

Peek video content
----------------

When you peek the video content, it's shown to you the video's storyboard, which is a series of snapshots from the video in different moments from the beginning to the end. You can click the timestamps to open the video directly in the part you are interested in.

Peek audio transcription
----------------

While the "Peek video content" feature enables you to check the *visual* content of the video, the "Peek audio transcription" feature enables you to check the *verbal* content. This is most useful for videos that are just someone talking about something, or videos that you don't know exactly what it is about and you just need to peek the first few spoken sentences where the presenter explains it. 

You can click the timestamps to open the video directly in the part you are interested in. You also have the option of choosing a language to which the transcript should be translated, and in the extension's settings you can set a preferred language which the transcript should always be in.

Peek description
----------------

Some videos add a summary of the video content in the description, and others elaborate a little more on what the video is about, which is an alternative for confirming the video's subject.

Peek comments
----------------

The "Peek comments" feature makes you able to check what the viewers think of the video in a minimalist interface. 

Peeking the comments is useful for cases when there's something clearly incorrect in the video and at least someone in the comments points that out, or when you're not really interested in the video, but only in what people say about the subject. This can also be used as an alternative method for confirming what the video is about or its content.

Peek channel
----------------

When you peek a channel a small viewport is opened so you can take a look on the video's channel content and even watch videos without leaving the page. 

This is useful to make sure whether you can hide the whole channel from your recommendations, or just to take a look on the channel's other videos.

View high-res thumbnail
----------------

You can also view the video cover (thumbnail) in the highest resolution available.

Full titles
----------------

Additionally, the extension also makes all titles be displayed in full, without any trimming or ellipsis.                    

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

Tên YouTube Clickbait-Buster YouTube Clickbait-Buster
ID iajoojjhhcjojdealgfdeehagopjaogm
URL Chính Thức https://chromewebstore.google.com/detail/youtube-clickbait-buster/iajoojjhhcjojdealgfdeehagopjaogm
Mô tả Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.
Kích Thước Tệp 24.76 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 2.0.7
Cập Nhật Lần Cuối 2023-06-09
Ngày Phát Hành 2022-08-29
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển BLBC
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster
URL Trang Trợ Giúp https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster/issues
URL Trang Chính Sách Bảo Mật https://github.com/hjk789/NXEnhanced/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Clickbait-Buster",
    "version": "2.0.7",
    "description": "Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ],
            "js": [
                "utils.js",
                "YouTube-Clickbait-Buster.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/donation.html"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options-page.html"
    },
    "action": {
        "default_title": "YouTube Clickbait-Buster",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}