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…
Что такое YouTube Volume Fix?
YouTube Volume Fix - это расширение Chrome, разработанное Connor Linfoot, и его основная функция - "This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…".
Скачать файл CRX расширения YouTube Volume Fix
Скачайте файлы расширений YouTube Volume Fix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | okocpealpliblhljcgldklklkifaoioa |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa |
Описание | This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a… |
Размер файла | 14.8 KB |
Количество установок | 39 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2017-06-20 |
Дата публикации | 2017-06-20 |
Рейтинг | 2.00/5 Всего 4 оценок |
Разработчик | Connor Linfoot |
Тип оплаты | free |
Поддерживаемые языки | 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:\/\/*\/*" ] } ] } |