Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Ad Accelerator क्या है?
Ad Accelerator rkarpinski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects if a video ad is playing, mutes the video and dramatically increases speed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ad Accelerator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Skip through annoying advertisements instantly on sites like Youtube & Hulu. * Automatically utilize skip ad button * Automatically mute ads * Automatically increases ad speed to the maximum allowed speed Skip through ads with Ad Accelerator and spend more time watching videos. Completely free and open sourced on github!! Support us by leaving a review or by contributing a pull request.
एक्सटेंशन की मूल जानकारी
नाम | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
आधिकारिक URL | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
विवरण | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
फ़ाइल का आकार | 472 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 0.0.0.4 |
अंतिम अपडेट | 2024-03-06 |
प्रकाशन तिथि | 2023-11-15 |
रेटिंग | 4.46/5 कुल 69 रेटिंग्स |
डेवलपर | rkarpinski |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/rkk3/ad-accelerator |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ad Accelerator", "version": "0.0.0.4", "description": "Detects if a video ad is playing, mutes the video and dramatically increases speed.", "permissions": [ "webNavigation", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "assets\/images\/icon16.png", "32": "assets\/images\/icon32.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } } |