Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
¿Qué es Youtube Plus?
Youtube Plus es una extensión de Chrome desarrollada por TalentedB, y su función principal es "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Youtube Plus
Descarga archivos de extensión Youtube Plus en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
URL Oficial | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
Descripción | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
Tamaño del Archivo | 70.09 KB |
Cantidad de Instalaciones | 60 |
Versión Actual | 1.0 |
Última Actualización | 2023-02-25 |
Fecha de Publicación | 2023-02-21 |
Calificación | 5.00/5 Total de 9 Calificaciones |
Desarrollador | TalentedB |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/TalentedB/Youtube-Plus |
URL de la Página de Ayuda | https://github.com/TalentedB/Youtube-Plus |
Idiomas Soportados | 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" ] } |