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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}