Volume Controller

HTML5 video and audio volume controller

Volume Controller क्या है?

Volume Controller rajuGT द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "HTML5 video and audio volume controller"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Volume Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}