Netflix Jumpscare Notifier
It will notify you 5 seconds before jumpscare comes
Netflix Jumpscare Notifier là gì?
Netflix Jumpscare Notifier là một tiện ích mở rộng Chrome được phát triển bởi Fairuz R, và tính năng chính của nó là "It will notify you 5 seconds before jumpscare comes".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Netflix Jumpscare Notifier
Tải xuống các tệp mở rộng Netflix Jumpscare Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Netflix Jumpscare Notifier |
ID | hdomlajjnoeoloimaglmhihemhdpehok |
URL Chính Thức | https://chromewebstore.google.com/detail/netflix-jumpscare-notifie/hdomlajjnoeoloimaglmhihemhdpehok |
Mô tả | It will notify you 5 seconds before jumpscare comes |
Kích Thước Tệp | 145 KB |
Số Lần Cài Đặt | 401 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2023-01-03 |
Ngày Phát Hành | 2023-01-02 |
Nhà Phát Triển | Fairuz R |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |