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?

YouTube Clickbait-Buster是由BLBC開發的Chrome擴展程式,該擴展的主要功能是“Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載YouTube Clickbait-Buster擴展crx文件

下載YouTube Clickbait-Buster擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 YouTube Clickbait-Buster YouTube Clickbait-Buster
ID iajoojjhhcjojdealgfdeehagopjaogm
官方網址 https://chromewebstore.google.com/detail/youtube-clickbait-buster/iajoojjhhcjojdealgfdeehagopjaogm
簡介 Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.
檔案大小 24.76 KB
安裝次數 79
目前版本 2.0.7
更新時間 2023-06-09
上架時間 2022-08-29
評分 3.00/5 共 2 次評分
開發者 BLBC
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster
說明頁面URL https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster/issues
隱私政策頁面URL https://github.com/hjk789/NXEnhanced/wiki/Privacy-Policy
支援的語言 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"
    }
}