Volume Controller
HTML5 video and audio volume controller
什麼是Volume Controller?
Volume Controller是由rajuGT開發的Chrome擴展程式,該擴展的主要功能是“HTML5 video and audio volume controller”。
擴展截圖
下載Volume Controller擴展crx文件
下載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 |
ID | dikemolgkkmhlgpgnmndjekbbckmgfmh |
官方網址 | 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" ] } ] } |