Youtube Audio Compressor

A simple Youtube extension that compresses video audio sound levels

Youtube Audio Compressor là gì?

Youtube Audio Compressor là một tiện ích mở rộng Chrome được phát triển bởi https://dancodes.online, và tính năng chính của nó là "A simple Youtube extension that compresses video audio sound levels".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Audio Compressor

Tải xuống các tệp mở rộng Youtube Audio Compressor 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

                        The easiest way to compress YouTube audio. 

Often when browsing YouTube, some videos are quiet and others are extremely loud 🔊 
This extension seeks to fix this issue by compressing the audio, therefore levelling all videos to a similar volume, all in the aid of your ears. 

🚀 Features
  - Boost quiet videos
  - Compress loud videos
  - Integrated into the YouTube player                    

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

Tên Youtube Audio Compressor Youtube Audio Compressor
ID henggpklijhpgacenhcmoffgnhbblgag
URL Chính Thức https://chromewebstore.google.com/detail/youtube-audio-compressor/henggpklijhpgacenhcmoffgnhbblgag
Mô tả A simple Youtube extension that compresses video audio sound levels
Kích Thước Tệp 28.2 KB
Số Lần Cài Đặt 3,450
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-04-12
Ngày Phát Hành 2022-10-05
Đánh Giá 4.22/5 Tổng số 36 Đánh Giá
Nhà Phát Triển https://dancodes.online
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dan-online/youtubeaudiocompressor
URL Trang Trợ Giúp https://github.com/dan-online/youtubeaudiocompressor/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Audio Compressor",
    "version": "1.0.2",
    "description": "A simple Youtube extension that compresses video audio sound levels",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/import-content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "assets\/icons\/16.png",
        "24": "assets\/icons\/24.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "64": "assets\/icons\/64.png",
        "128": "assets\/icons\/128.png",
        "256": "assets\/icons\/256.png",
        "512": "assets\/icons\/512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "scripts\/content-script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}