Netflix Navigator

Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.

Netflix Navigatorとは何ですか?

Netflix Navigatorはdutiyeshによって開発されたChromeの拡張機能で、その主な機能は「Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.」です。

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

screenshot
screenshot
screenshot
screenshot

Netflix Navigator拡張機能のCRXファイルをダウンロード

Netflix Navigator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Netflix Navigator is a chrome extension for Netflix to make browsing experience easy with keyboard.

Features:

★ Navigate with Arrow keys
★ Get more information with Enter key
★ Autoplays Preview after 1 second
★ Search Netflix with S key                    

拡張機能の基本情報

名前 Netflix Navigator Netflix Navigator
ID kiikkoajobekfkpgaojoincnfombbaco
公式URL https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco
説明 Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
ファイルサイズ 37.95 KB
インストール数 216
現在のバージョン 0.3.0
最終更新日 2022-12-04
公開日 2020-11-08
評価 5.00/5 合計 5 レビュー
開発者 dutiyesh
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.netflixnavigator.com/
プライバシーポリシーページのURL https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix Navigator",
    "version": "0.3.0",
    "description": "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Netflix Navigator",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ]
        }
    ]
}