Volume Mixer

Allows for the changing of individual tab volume

Volume Mixer là gì?

Volume Mixer là một tiện ích mở rộng Chrome được phát triển bởi Nick K, và tính năng chính của nó là "Allows for the changing of individual tab volume".

Ả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 Volume Mixer

Tải xuống các tệp mở rộng Volume Mixer 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 extension is a simple volume mixer that allows the user to change the volume of individual tabs as well as the master volume of all tabs from a simple popup UI in the right hand corner of the screen. To use, just click on the mixer icon, and select which volume level you wish to set for each tab. 

Note: This extension currently works only with HTML video and audio elements (does not work with Flash). It might be necessary to use another extension to force websites to use HTML5. 

If you find any bugs, or have any feedback in general about this app, email [email protected] and I will try to help you with any issues.                    

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

Tên Volume Mixer Volume Mixer
ID nndlkolppogjamclcghenckmillbpoei
URL Chính Thức https://chrome.google.com/webstore/detail/volume-mixer/nndlkolppogjamclcghenckmillbpoei
Mô tả Allows for the changing of individual tab volume
Kích Thước Tệp 94.91 KB
Số Lần Cài Đặt 7,000
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-05-10
Ngày Phát Hành 2016-05-10
Đánh Giá 1.74/5 Tổng số 66 Đánh Giá
Nhà Phát Triển Nick K
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Volume Mixer",
    "description": "Allows for the changing of individual tab volume",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "volumechange.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    }
}