Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Qu'est-ce que Youtube Plus ?
Youtube Plus est une extension Chrome développée par TalentedB, et sa fonction principale est "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Plus
Téléchargez les fichiers d'extension Youtube Plus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
URL Officiel | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
Description | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
Taille du Fichier | 70.09 KB |
Nombre d'Installations | 60 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-02-25 |
Date de Publication | 2023-02-21 |
Évaluation | 5.00/5 Total 9 Évaluations |
Développeur | TalentedB |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/TalentedB/Youtube-Plus |
URL de la Page d'Aide | https://github.com/TalentedB/Youtube-Plus |
Langues Prises en Charge | 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" ] } |