Control sound

This extension control all the sound in your page

Control soundคืออะไร?

Control sound เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pow-up และคุณลักษณะหลักของมันคือ "This extension control all the sound in your page"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Control sound

ดาวน์โหลดไฟล์ส่วนขยาย Control sound ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Control sound Control sound
ID modfdbbnnkgkddgjinphbadkmkhhpgee
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/control-sound/modfdbbnnkgkddgjinphbadkmkhhpgee
คำอธิบาย This extension control all the sound in your page
ขนาดไฟล์ 40.54 KB
จำนวนการติดตั้ง 10
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-10-10
วันที่เผยแพร่ 2016-10-10
ผู้พัฒนา Pow-up
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
        }
    ]
}