Netflix Jumpscare Notifier
It will notify you 5 seconds before jumpscare comes
Netflix Jumpscare Notifier क्या है?
Netflix Jumpscare Notifier Fairuz R द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It will notify you 5 seconds before jumpscare comes"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Netflix Jumpscare Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |