Fern for YouTube

Moves comments to be next to the video on YouTube!

¿Qué es Fern for YouTube?

Fern for YouTube es una extensión de Chrome desarrollada por Ahsan Z., y su función principal es "Moves comments to be next to the video on YouTube!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Fern for YouTube

Descarga archivos de extensión Fern for YouTube 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

                        Ever wanted to read YouTube comments and watch the video at the same time without having to scroll down? Well, this extension helps you do just that! 

Fern for YouTube will move comments up and place them right next to the video! If you want to move the comments back down to their original position, you can simply toggle the "disable" button on the extension pane!

Enjoy a better, frustration-free YouTube comments experience with Fern For YouTube!

Note: This product is not affiliated with YouTube or Google in any way.                    

Información Básica de la Extensión

Nombre Fern for YouTube Fern for YouTube
ID ppgbpdpeihnmhiidcakkjpigfpeajjmk
URL Oficial https://chromewebstore.google.com/detail/fern-for-youtube/ppgbpdpeihnmhiidcakkjpigfpeajjmk
Descripción Moves comments to be next to the video on YouTube!
Tamaño del Archivo 37.57 KB
Cantidad de Instalaciones 46
Versión Actual 1.0
Última Actualización 2022-05-12
Fecha de Publicación 2022-05-12
Desarrollador Ahsan Z.
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://fern234234.s3.us-east-2.amazonaws.com/PrivacyPolicy.pdf
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fern for YouTube",
    "description": "Moves comments to be next to the video on YouTube!",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "youtube_style.css"
            ],
            "js": [
                "youtube.js"
            ],
            "run_at": "document_idle"
        }
    ]
}