Netflix Jumpscare Notifier
It will notify you 5 seconds before jumpscare comes
Qu'est-ce que Netflix Jumpscare Notifier ?
Netflix Jumpscare Notifier est une extension Chrome développée par Fairuz R, et sa fonction principale est "It will notify you 5 seconds before jumpscare comes".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix Jumpscare Notifier
Téléchargez les fichiers d'extension Netflix Jumpscare Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Netflix Jumpscare Notifier |
ID | hdomlajjnoeoloimaglmhihemhdpehok |
URL Officiel | https://chromewebstore.google.com/detail/netflix-jumpscare-notifie/hdomlajjnoeoloimaglmhihemhdpehok |
Description | It will notify you 5 seconds before jumpscare comes |
Taille du Fichier | 145 KB |
Nombre d'Installations | 401 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2023-01-03 |
Date de Publication | 2023-01-02 |
Développeur | Fairuz R |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |