YouTube Ad Controller
Fast forward and rewind YouTube ads using your arrow keys!
YouTube Ad Controller क्या है?
YouTube Ad Controller Briann द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fast forward and rewind YouTube ads using your arrow keys!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Ad Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have you ever wanted to re-watch an ad, or skip it? YouTube Ad Controller lets you fast forward and rewind YouTube video ads with your arrow keys, just like on any video!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fmklhcikkdkambjpmmpdiaihncopfhlg |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-ad-controller/fmklhcikkdkambjpmmpdiaihncopfhlg |
विवरण | Fast forward and rewind YouTube ads using your arrow keys! |
फ़ाइल का आकार | 10.76 KB |
स्थापना संख्या | 191 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-07-19 |
प्रकाशन तिथि | 2022-07-18 |
रेटिंग | 3.00/5 कुल 1 रेटिंग्स |
डेवलपर | Briann |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://extensions.brianwalczak.com |
सहायता पृष्ठ URL | https://www.brianwalczak.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Ad Controller", "description": "Fast forward and rewind YouTube ads using your arrow keys!", "version": "1.0", "author": "ComplexxBrian", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "keyPress.js" ] } ], "icons": { "128": "icon-128.png", "16": "icon-small.png", "48": "icon-48.png" }, "action": { "default_popup": "popup.html", "default_title": "Ad Controller", "default_icon": "icon-small.png" } } |