Youtube Autoclose Ads
Automatically close ads on youtube videos after an amount of seconds.
Youtube Autoclose Ads क्या है?
Youtube Autoclose Ads Gabriel Duarte द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically close ads on youtube videos after an amount of seconds."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Autoclose Ads एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Automatically close ads on youtube videos after an amount of seconds (default to 5 seconds). You can change the seconds on the settings page of the extension (chrome://extensions) But why not just use a normal ad-block? An ad-block completly removes all sorts of ads on youtube, making the video creator not get any money with monetization. This extension allow you to set a minimum time in which the ad will be displayed, and after that time, the ad will be closed automatically, allowing the content creator to get monetization on the video.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Autoclose Ads |
ID | mppjhhbajcciljocgbadbhbgphjfdmhj |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj |
विवरण | Automatically close ads on youtube videos after an amount of seconds. |
फ़ाइल का आकार | 722 KB |
स्थापना संख्या | 2,427 |
वर्तमान संस्करण | 1.2.3 |
अंतिम अपडेट | 2022-07-12 |
प्रकाशन तिथि | 2019-02-10 |
रेटिंग | 4.46/5 कुल 13 रेटिंग्स |
डेवलपर | Gabriel Duarte |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/GabrielDuarteM/youtube-autoclose-ads |
सहायता पृष्ठ URL | https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Autoclose Ads", "version": "1.2.3", "description": "Automatically close ads on youtube videos after an amount of seconds.", "author": "Gabriel Duarte", "homepage_url": "https:\/\/github.com\/GabrielDuarteM\/youtube-autoclose-ads", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "youtube-autoclose-ads.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html" } } |