Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Wat is Youtube Plus?
Youtube Plus is een Chrome-extensie ontwikkeld door TalentedB, en de belangrijkste functie is "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Plus
Download Youtube Plus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
Officiële URL | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
Beschrijving | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
Bestandsgrootte | 70.09 KB |
Aantal Installaties | 60 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2023-02-25 |
Publicatiedatum | 2023-02-21 |
Beoordeling | 5.00/5 Totaal 9 Beoordelingen |
Ontwikkelaar | TalentedB |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/TalentedB/Youtube-Plus |
Help Pagina-URL | https://github.com/TalentedB/Youtube-Plus |
Ondersteunde Talen | 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" ] } |