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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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 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
Eメール [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"
    ]
}