Youtube Ad Muter
Mutes ads while still supporting your favourite YouTubers
Youtube Ad Muter क्या है?
Youtube Ad Muter nopynospy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mutes ads while still supporting your favourite YouTubers"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Ad Muter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
In content script, use mutation observer to detect when ad is playing on YouTube. Then, set videos to muted.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Ad Muter |
ID | kpaapfjgeapgppbkcgnogpdadofkeobc |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-ad-muter/kpaapfjgeapgppbkcgnogpdadofkeobc |
विवरण | Mutes ads while still supporting your favourite YouTubers |
फ़ाइल का आकार | 88.41 KB |
स्थापना संख्या | 489 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2023-06-18 |
प्रकाशन तिथि | 2023-06-18 |
रेटिंग | 4.50/5 कुल 4 रेटिंग्स |
डेवलपर | nopynospy |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/nopynospy/youtube_ad_muter |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Ad Muter", "description": "Mutes ads while still supporting your favourite YouTubers", "version": "1.0.0", "manifest_version": 3, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_title": "Youtube Ad Muter", "default_icon": "icon.png" }, "permissions": [], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ] } ] } |