Youtube Plus

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

Cos'è Youtube Plus?

Youtube Plus è un'estensione di Chrome sviluppata da TalentedB, e la sua funzione principale è "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Plus

Scarica i file di estensione Youtube Plus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Youtube Plus Youtube Plus
ID cedpplfbcjacmflnlglnebkglbibkegk
URL Ufficiale https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk
Descrizione Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Dimensione del File 70.09 KB
Conteggio Installazioni 60
Versione Corrente 1.0
Ultimo Aggiornamento 2023-02-25
Data di Pubblicazione 2023-02-21
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore TalentedB
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/TalentedB/Youtube-Plus
URL della Pagina di Aiuto https://github.com/TalentedB/Youtube-Plus
Lingue Supportate 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"
    ]
}