Youtube Plus

Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…

Was ist Youtube Plus?

Youtube Plus ist eine Chrome-Erweiterung, die von TalentedB entwickelt wurde, und ihr Hauptmerkmal ist "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".

Erweiterungsscreenshots

screenshot

Youtube Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Plus-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

                        Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and comprehend content at your own pace with ease. Our extension also comes equipped with an ad-skipping feature for YouTube videos, ensuring an uninterrupted viewing experience. Additionally, our extension includes a volume changer feature that allows you to adjust the volume of any video playing, even above or below 100%. No more frustration with slow videos, annoying ads, or limited volume control. Download our extension today and elevate your video playback experience to the next level.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Plus Youtube Plus
ID cedpplfbcjacmflnlglnebkglbibkegk
Offizielle URL https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk
Beschreibung Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Dateigröße 70.09 KB
Installationsanzahl 60
Aktuelle Version 1.0
Letztes Update 2023-02-25
Veröffentlichungsdatum 2023-02-21
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler TalentedB
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/TalentedB/Youtube-Plus
Hilfeseite URL https://github.com/TalentedB/Youtube-Plus
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Plus",
    "version": "1.0",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_title": "Youtube Plus",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "adskipper.js"
            ],
            "run_at": "document_start",
            "world": "MAIN"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "volumeInject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ]
}