Netflix Jumpscare Notifier

It will notify you 5 seconds before jumpscare comes

Was ist Netflix Jumpscare Notifier?

Netflix Jumpscare Notifier ist eine Chrome-Erweiterung, die von Fairuz R entwickelt wurde, und ihr Hauptmerkmal ist "It will notify you 5 seconds before jumpscare comes".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Netflix Jumpscare Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Netflix Jumpscare Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Netflix Jumpscare Notifier Netflix Jumpscare Notifier
ID hdomlajjnoeoloimaglmhihemhdpehok
Offizielle URL https://chromewebstore.google.com/detail/netflix-jumpscare-notifie/hdomlajjnoeoloimaglmhihemhdpehok
Beschreibung It will notify you 5 seconds before jumpscare comes
Dateigröße 145 KB
Installationsanzahl 401
Aktuelle Version 0.0.2
Letztes Update 2023-01-03
Veröffentlichungsdatum 2023-01-02
Entwickler Fairuz R
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}