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 là gì?

YouTube Volume Fix là một tiện ích mở rộng Chrome được phát triển bởi Connor Linfoot, và tính năng chính của nó là "This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…".

Tải xuống tệp CRX của tiện ích mở rộng YouTube Volume Fix

Tải xuống các tệp mở rộng YouTube Volume Fix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Volume Fix YouTube Volume Fix
ID okocpealpliblhljcgldklklkifaoioa
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-volume-fix/okocpealpliblhljcgldklklkifaoioa
Mô tả This Chrome extension listens for the "onvolumechange" event on YouTube and doubles the what YouTube is setting the volume to for a…
Kích Thước Tệp 14.8 KB
Số Lần Cài Đặt 39
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2017-06-20
Ngày Phát Hành 2017-06-20
Đánh Giá 2.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Connor Linfoot
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}