Netflix Jumpscare Notifier
It will notify you 5 seconds before jumpscare comes
什么是Netflix Jumpscare Notifier?
Netflix Jumpscare Notifier是由Fairuz R开发的Chrome扩展程序,该扩展的主要功能是“It will notify you 5 seconds before jumpscare comes”。
扩展截图
下载Netflix Jumpscare Notifier扩展crx文件
下载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" ] } |