YouTube Volume Fix
This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…
¿Qué es YouTube Volume Fix?
YouTube Volume Fix es una extensión de Chrome desarrollada por Connor Linfoot, y su función principal es "This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…".
Descargar Archivo CRX de la Extensión YouTube Volume Fix
Descarga archivos de extensión YouTube Volume Fix 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
This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a more accurate volume output.
Información Básica de la Extensión
Nombre | |
ID | okocpealpliblhljcgldklklkifaoioa |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa |
Descripción | This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a… |
Tamaño del Archivo | 14.8 KB |
Cantidad de Instalaciones | 39 |
Versión Actual | 1.0.2 |
Última Actualización | 2017-06-20 |
Fecha de Publicación | 2017-06-20 |
Calificación | 2.00/5 Total de 4 Calificaciones |
Desarrollador | Connor Linfoot |
Tipo de Pago | free |
Idiomas Soportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Volume Fix", "version": "1.0.2", "minimum_chrome_version": "18", "manifest_version": 2, "description": "", "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest" ], "content_scripts": [ { "all_frames": false, "run_at": "document_end", "js": [ "youtube-volume-fix.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |