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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |