YouTube Clickbait-Buster

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

¿Qué es YouTube Clickbait-Buster?

YouTube Clickbait-Buster es una extensión de Chrome desarrollada por BLBC, y su función principal es "Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión YouTube Clickbait-Buster

Descarga archivos de extensión YouTube Clickbait-Buster en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre YouTube Clickbait-Buster YouTube Clickbait-Buster
ID iajoojjhhcjojdealgfdeehagopjaogm
URL Oficial https://chromewebstore.google.com/detail/youtube-clickbait-buster/iajoojjhhcjojdealgfdeehagopjaogm
Descripción Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.
Tamaño del Archivo 24.76 KB
Cantidad de Instalaciones 79
Versión Actual 2.0.7
Última Actualización 2023-06-09
Fecha de Publicación 2022-08-29
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador BLBC
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster
URL de la Página de Ayuda https://github.com/hjk789/Userscripts/tree/master/YouTube-Clickbait-Buster/issues
URL de la Página de Política de Privacidad https://github.com/hjk789/NXEnhanced/wiki/Privacy-Policy
Idiomas Soportados 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"
    }
}