Volume Controller

HTML5 video and audio volume controller

Volume Controllerคืออะไร?

Volume Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rajuGT และคุณลักษณะหลักของมันคือ "HTML5 video and audio volume controller"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

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

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

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

                        Most of the websites allows us to stream/play videos, but plays at high volume(100%) which is annoying and immediately the user starts searching for volume adjuster.

This extension helps you to get rid of those annoying high volumes and it works similar to your system-level volume manager, which manages for all chrome tabs you are working on.

Changelog:

v0.4 - Configure volume step size

v0.3 - Keyboard shortcuts to increase/decrease/mute volume (see settings page for instructions)

Features:

- Play audio/video media with saved volume settings.

- Remembers previously saved volume level (even after cache clear/reboot). This helps to avoid checking for volume level while opening the chrome app freshly.

- A simple controller which controls volume of a video playing in any tab/window while you're working on other tab/window.

It helps you to get rid of high volume *auto-play* videos while browsing facebook, twitter, web.whatsapp, youtube and any other streaming sites (html5 videos).                    

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

ชื่อ Volume Controller Volume Controller
ID dikemolgkkmhlgpgnmndjekbbckmgfmh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/volume-controller/dikemolgkkmhlgpgnmndjekbbckmgfmh
คำอธิบาย HTML5 video and audio volume controller
ขนาดไฟล์ 84.32 KB
จำนวนการติดตั้ง 7,153
เวอร์ชันปัจจุบัน 0.4.1
อัปเดตครั้งล่าสุด 2017-03-06
วันที่เผยแพร่ 2017-03-06
คะแนน 3.55/5 รวมทั้งหมด 113 คะแนน
ผู้พัฒนา rajuGT
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Volume Controller",
    "short_name": "volumeController",
    "manifest_version": 2,
    "version": "0.4.1",
    "description": "HTML5 video and audio volume controller",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}