Youtube Volume Scroll
Enable scrolling mousewheel to control volume on Youtube and Youtube Music
Youtube Volume Scroll क्या है?
Youtube Volume Scroll Araxeus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable scrolling mousewheel to control volume on Youtube and Youtube Music"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Volume Scroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
★ Display the new volume for 1 second on the video when changing volume ★ Remember volume even in incognito mode ★ Works on youtube.com and music.youtube.com ★ Works in embedded videos (Like in Reddit, WhatsApp, etc.) ★ Clicking the extension icon allows changing the volume scroll 'steps' or overlay style ★ Automatically blocks the "Continue watching?" popup that appears after some time This extension is open source on GitHub - bug reports / feature requests / changelogs and more info can be found on the main page at https://github.com/Araxeus/Youtube-Volume-Scroll
एक्सटेंशन की मूल जानकारी
नाम | Youtube Volume Scroll |
ID | agadcopafaojndinhloilcanpfpbonbk |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-volume-scroll/agadcopafaojndinhloilcanpfpbonbk |
विवरण | Enable scrolling mousewheel to control volume on Youtube and Youtube Music |
फ़ाइल का आकार | 54.84 KB |
स्थापना संख्या | 6,470 |
वर्तमान संस्करण | 3.1.1 |
अंतिम अपडेट | 2023-04-04 |
प्रकाशन तिथि | 2021-09-11 |
रेटिंग | 4.59/5 कुल 34 रेटिंग्स |
डेवलपर | Araxeus |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Araxeus/Youtube-Volume-Scroll |
सहायता पृष्ठ URL | https://github.com/Araxeus/Youtube-Volume-Scroll/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Volume Scroll", "short_name": "YoutubeVolumeScroll", "version": "3.1.1", "description": "Enable scrolling mousewheel to control volume on Youtube and Youtube Music", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/music.youtube.com\/*" ], "all_frames": true, "js": [ "index.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "pageAccess.js" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/music.youtube.com\/*" ] } ], "icons": { "16": "icons\/icon16x16.png", "32": "icons\/icon32x32.png", "48": "icons\/BigIcon48x48.png", "128": "icons\/BigIcon128x128.png", "512": "icons\/BigIcon512x512.png" }, "action": { "default_popup": "popup\/popup.html" }, "options_ui": { "page": "popup\/popup.html", "open_in_tab": false }, "manifest_version": 3 } |