Auto Ad Mute
This mutes youtube ad audio.
Auto Ad Mute क्या है?
Auto Ad Mute jasoberai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This mutes youtube ad audio."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Ad Mute एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Code is available here as open source: [https://github.com/jasmeeto/auto-ad-mute] An extension that automatically mutes tabs while ad audio from YouTube is playing for those who want to support their favorite content creators without the noise. Relatively intuitive, the addon is enabled by default. Features: - Mutes ads - Can skip ads that are skippable (i.e. ones that show the 'Skip Ad' button) (Disabled by default) - Hides ad banners that appear in middle of videos by just moving them off screen
एक्सटेंशन की मूल जानकारी
नाम | Auto Ad Mute |
ID | hljoencdappihmlkilchbhcjoldimkbn |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-ad-mute/hljoencdappihmlkilchbhcjoldimkbn |
विवरण | This mutes youtube ad audio. |
फ़ाइल का आकार | 39.86 KB |
स्थापना संख्या | 1,570 |
वर्तमान संस्करण | 1.8 |
अंतिम अपडेट | 2017-10-29 |
प्रकाशन तिथि | 2017-10-29 |
रेटिंग | 3.07/5 कुल 45 रेटिंग्स |
डेवलपर | jasoberai |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/jasmeeto/auto-ad-mute |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Ad Mute", "description": "This mutes youtube ad audio.", "version": "1.8", "icons": { "48": "icon_mute.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "libs\/jquery-3.1.0.min.js", "libs\/arrive.min.js", "contentScript.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Auto Mute Options" }, "background": { "scripts": [ "backgroundScript.js" ] }, "permissions": [ "tabs", "*:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |