Netflix rewind x seconds

Netflix rewind or skip a parameter seconds

什么是Netflix rewind x seconds?

Netflix rewind x seconds是由wahid-moh开发的Chrome扩展程序,该扩展的主要功能是“Netflix rewind or skip a parameter seconds”。

扩展截图

screenshot

下载Netflix rewind x seconds扩展crx文件

下载Netflix rewind x seconds扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Rewind / skip time on netflix movies, time can be paramtered.

Use key keyboard <  to rewind with x second
Use key keyboard >  to skip with x second
Use > or . to skip with 5 seconds (does get stuck sometimes)                    

扩展基本信息

名称 Netflix rewind x seconds Netflix rewind x seconds
ID jmklaacdggogjblaiofpikjjhblhicop
官方URL https://chromewebstore.google.com/detail/netflix-rewind-x-seconds/jmklaacdggogjblaiofpikjjhblhicop
简介 Netflix rewind or skip a parameter seconds
文件大小 8.89 KB
安装次数 352
当前版本 1.0
更新时间 2023-01-11
上架时间 2023-01-10
评分 2.75/5 共4次评分
开发者 wahid-moh
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/wahid-moh/rewind-netflix
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix rewind x seconds",
    "description": "Netflix rewind or skip a parameter seconds",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "netflix-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}