Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Τι είναι το Ad Accelerator;
Το Ad Accelerator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rkarpinski, και η κύρια λειτουργία του είναι "Detects if a video ad is playing, mutes the video and dramatically increases speed.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Ad Accelerator
Λήψη αρχείων επέκτασης Ad Accelerator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |