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…
Co to jest YouTube Volume Fix?
YouTube Volume Fix to rozszerzenie Chrome opracowane przez Connor Linfoot, a jego główną funkcją jest „This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…”.
Pobierz plik CRX rozszerzenia YouTube Volume Fix
Pobierz pliki rozszerzeń YouTube Volume Fix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | okocpealpliblhljcgldklklkifaoioa |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa |
Opis | This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a… |
Rozmiar pliku | 14.8 KB |
Liczba instalacji | 39 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2017-06-20 |
Data Publikacji | 2017-06-20 |
Ocena | 2.00/5 Łącznie 4 Oceny |
Deweloper | Connor Linfoot |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } ] } |