Netflix Jumpscare Notifier
It will notify you 5 seconds before jumpscare comes
Τι είναι το Netflix Jumpscare Notifier;
Το Netflix Jumpscare Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Fairuz R, και η κύρια λειτουργία του είναι "It will notify you 5 seconds before jumpscare comes".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Netflix Jumpscare Notifier
Λήψη αρχείων επέκτασης Netflix Jumpscare Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Features: 👀 List: See list of jumpscare in the movie or series ⚠️ Warning: will notify you 5 seconds before jumpscare comes 🙈 Blackout: instead of seeing jumpscare, the scene will be hidden and tell you what happened during the jumpscare 🔇 Mute: muted when jumpscare is coming All jumpscare data was from https://wheresthejump.com/ NB: - You may need to reload your browser when first installation extension - it doesn't work in all movies and series, you can see the covered list in https://wheresthejump.com/ - There's some movie or series where the jumpscare time isn't matched. It might appear after the notification or while showing the notification, so please be careful ✌️ Made with 🌴 by Fairuz R
Βασικές Πληροφορίες Επέκτασης
Όνομα | Netflix Jumpscare Notifier |
ID | hdomlajjnoeoloimaglmhihemhdpehok |
Επίσημο URL | https://chromewebstore.google.com/detail/netflix-jumpscare-notifie/hdomlajjnoeoloimaglmhihemhdpehok |
Περιγραφή | It will notify you 5 seconds before jumpscare comes |
Μέγεθος Αρχείου | 145 KB |
Αριθμός Εγκαταστάσεων | 401 |
Τρέχουσα Έκδοση | 0.0.2 |
Τελευταία Ενημέρωση | 2023-01-03 |
Ημερομηνία Δημοσίευσης | 2023-01-02 |
Προγραμματιστής | Fairuz R |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Netflix Jumpscare Notifier", "description": "It will notify you 5 seconds before jumpscare comes", "version": "0.0.2", "background": { "service_worker": "\/background.js" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.netflix.com\/*" ], "js": [ "inject.js" ], "all_frames": true } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*.netflix.com\/*" ], "resources": [ "content-injected.js" ] } ], "host_permissions": [ "https:\/\/*.netflix.com\/*" ], "permissions": [ "tabs", "storage" ] } |