Netflix Rewind 1 sec

Seek through video with an x amount of seconds (adjustable)

Netflix Rewind 1 secとは何ですか?

Netflix Rewind 1 secはLaurensによって開発されたChromeの拡張機能で、その主な機能は「Seek through video with an x amount of seconds (adjustable)」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Allows you to ↺ rewind the videoplayer on netflix.com by 1 second (instead of the default 10 seconds) each time you press the [<] or [,] key.

The amount of seconds to seek can be adjusted via the 🛠️ Options page.                    

拡張機能の基本情報

名前 Netflix Rewind 1 sec Netflix Rewind 1 sec
ID inpbafoldolmpeiebppjbckdpnkkhlej
公式URL https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej
説明 Seek through video with an x amount of seconds (adjustable)
ファイルサイズ 32.6 KB
インストール数 809
現在のバージョン 4.0.1
最終更新日 2024-01-03
公開日 2023-03-17
評価 4.50/5 合計 10 レビュー
開発者 Laurens
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/laurens94/netflix-rewind-browser-extension
ヘルプページのURL https://github.com/laurens94/netflix-rewind-browser-extension/issues
対応言語 en,nl,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "4.0.1",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "48": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "netflix-rewind-1-sec.js"
            ],
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{8e51a86a-e712-4386-a231-a9c3d06f3348}",
            "strict_min_version": "109.0"
        }
    }
}