YouTube Clickbait-Buster

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

Apa itu YouTube Clickbait-Buster?

YouTube Clickbait-Buster adalah ekstensi Chrome yang dikembangkan oleh BLBC, dan fitur utamanya adalah "Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi YouTube Clickbait-Buster

Unduh file ekstensi YouTube Clickbait-Buster dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama YouTube Clickbait-Buster YouTube Clickbait-Buster
ID iajoojjhhcjojdealgfdeehagopjaogm
URL Resmi https://chromewebstore.google.com/detail/youtube-clickbait-buster/iajoojjhhcjojdealgfdeehagopjaogm
Deskripsi Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.
Ukuran File 24.76 KB
Jumlah Instalasi 79
Versi Saat Ini 2.0.7
Terakhir Diperbarui 2023-06-09
Tanggal Publikasi 2022-08-29
Penilaian 3.00/5 Total 2 Penilaian
Pengembang BLBC
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster
URL Halaman Bantuan https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster/issues
URL Halaman Kebijakan Privasi https://github.com/hjk789/NXEnhanced/wiki/Privacy-Policy
Bahasa yang Didukung 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"
    }
}