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是由Connor Linfoot开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件

下载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.                    

扩展基本信息

名称 YouTube Volume Fix YouTube Volume Fix
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:\/\/*\/*"
            ]
        }
    ]
}