Fern for YouTube

Moves comments to be next to the video on YouTube!

Was ist Fern for YouTube?

Fern for YouTube ist eine Chrome-Erweiterung, die von Ahsan Z. entwickelt wurde, und ihr Hauptmerkmal ist "Moves comments to be next to the video on YouTube!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Fern for YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fern for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fern for YouTube Fern for YouTube
ID ppgbpdpeihnmhiidcakkjpigfpeajjmk
Offizielle URL https://chromewebstore.google.com/detail/fern-for-youtube/ppgbpdpeihnmhiidcakkjpigfpeajjmk
Beschreibung Moves comments to be next to the video on YouTube!
Dateigröße 37.57 KB
Installationsanzahl 46
Aktuelle Version 1.0
Letztes Update 2022-05-12
Veröffentlichungsdatum 2022-05-12
Entwickler Ahsan Z.
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://fern234234.s3.us-east-2.amazonaws.com/PrivacyPolicy.pdf
Unterstützte Sprachen 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"
        }
    ]
}