Control sound

This extension control all the sound in your page

Control sound là gì?

Control sound là một tiện ích mở rộng Chrome được phát triển bởi Pow-up, và tính năng chính của nó là "This extension control all the sound in your page".

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

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

                                            

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

Tên Control sound Control sound
ID modfdbbnnkgkddgjinphbadkmkhhpgee
URL Chính Thức https://chromewebstore.google.com/detail/control-sound/modfdbbnnkgkddgjinphbadkmkhhpgee
Mô tả This extension control all the sound in your page
Kích Thước Tệp 40.54 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-10-10
Ngày Phát Hành 2016-10-10
Nhà Phát Triển Pow-up
Email [email protected]
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": "Control sound",
    "description": "This extension control all the sound in your page",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Change volume"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "background.js"
            ],
            "all_frames": true
        }
    ]
}