Skipfast intro, recap, next and more
Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.
Τι είναι το Skipfast intro, recap, next and more;
Το Skipfast intro, recap, next and more είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michaël Faurel, και η κύρια λειτουργία του είναι "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Skipfast intro, recap, next and more
Λήψη αρχείων επέκτασης Skipfast intro, recap, next and more σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Automatically skip Intro, Recaps and Next episode for Netflix, AppleTV, Prime Video and Disney plus prompts. IMPORTANT: you need to refresh the Netflix, AppleTV, Prime Video or Disney plus page only once after installing the extension. It's not dependent on language. You can check the code here : https://github.com/mfaurel/skipfast You can open an issue or send a pull request if you find any bug. If you want to buy me a coffee, here's my paypal : https://paypal.me/MichaelFaurel
Βασικές Πληροφορίες Επέκτασης
Όνομα | Skipfast intro, recap, next and more |
ID | gjaffkjplmcnjonnmoagianaeacjfipj |
Επίσημο URL | https://chromewebstore.google.com/detail/skipfast-intro-recap-next/gjaffkjplmcnjonnmoagianaeacjfipj |
Περιγραφή | Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts. |
Μέγεθος Αρχείου | 351 KB |
Αριθμός Εγκαταστάσεων | 121 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2023-12-04 |
Ημερομηνία Δημοσίευσης | 2022-03-13 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Michaël Faurel |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/mfaurel/skipfast |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mfaurel/skipfast/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Skipfast intro, recap, next and more", "description": "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.", "author": "Micha\u00ebl Faurel", "version": "2.0.0", "manifest_version": 3, "icons": { "128": "src\/assets\/icon128x128_2.png" }, "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_script.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "src\/popup.html" } } |