Tab Volume
Volume control within a browser tab
Tab Volume क्या है?
Tab Volume wokalek द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Volume control within a browser tab"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Volume एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A convenient and eye-pleasing extension for controlling the sound volume in a browser tab. 🍙 Increase or decrease volume within a browser tab 🍥 Set any upper limit for audio volume scaling 🍣 List of tabs on which you have changed the volume for easy switching between them 🍤 Restore tab volume with one click 🍢 Change volume with hotkeys Ctrl + Shift + ArrowUp/ArrowDown The extension is completely free and open source. The link to the code can be found in "Settings" under the "About extension" button.
एक्सटेंशन की मूल जानकारी
नाम | Tab Volume |
ID | nfconmpaofmnebmmnoinlbgfocaimkah |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-volume/nfconmpaofmnebmmnoinlbgfocaimkah |
विवरण | Volume control within a browser tab |
फ़ाइल का आकार | 73.1 KB |
स्थापना संख्या | 152 |
वर्तमान संस्करण | 1.0.5 |
अंतिम अपडेट | 2024-03-03 |
प्रकाशन तिथि | 2023-08-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | wokalek |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/wokalek/tab-volume |
सहायता पृष्ठ URL | https://github.com/wokalek/tab-volume/issues/new |
समर्थित भाषाएँ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_manifest_name__", "version": "1.0.5", "default_locale": "en", "description": "__MSG_manifest_description__", "author": "[email protected]", "minimum_chrome_version": "116", "icons": { "16": "favicons\/16.png", "32": "favicons\/32.png", "48": "favicons\/48.png", "128": "favicons\/128.png" }, "permissions": [ "activeTab", "tabCapture", "offscreen", "storage" ], "action": { "default_popup": "src\/pages\/popup.html" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "commands": { "VOLUME_UP": { "description": "__MSG_manifest_commands_volume_up__", "suggested_key": { "default": "Ctrl+Shift+Up" } }, "VOLUME_DOWN": { "description": "__MSG_manifest_commands_volume_down__", "suggested_key": { "default": "Ctrl+Shift+Down" } } } } |