Youtube Plus
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…
Youtube Plus क्या है?
Youtube Plus TalentedB द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and comprehend content at your own pace with ease. Our extension also comes equipped with an ad-skipping feature for YouTube videos, ensuring an uninterrupted viewing experience. Additionally, our extension includes a volume changer feature that allows you to adjust the volume of any video playing, even above or below 100%. No more frustration with slow videos, annoying ads, or limited volume control. Download our extension today and elevate your video playback experience to the next level.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Plus |
ID | cedpplfbcjacmflnlglnebkglbibkegk |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-plus/cedpplfbcjacmflnlglnebkglbibkegk |
विवरण | Experience seamless video control like never before with our customizable playback speed feature for MP4 videos. Watch and… |
फ़ाइल का आकार | 70.09 KB |
स्थापना संख्या | 60 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2023-02-25 |
प्रकाशन तिथि | 2023-02-21 |
रेटिंग | 5.00/5 कुल 9 रेटिंग्स |
डेवलपर | TalentedB |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/TalentedB/Youtube-Plus |
सहायता पृष्ठ URL | https://github.com/TalentedB/Youtube-Plus |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Plus", "version": "1.0", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_title": "Youtube Plus", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "adskipper.js" ], "run_at": "document_start", "world": "MAIN" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "volumeInject.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "scripting", "activeTab" ] } |