Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
什么是Netflix Skipper?
Netflix Skipper是由Ran Ribenzaft开发的Chrome扩展程序,该扩展的主要功能是“Automatically skip Netflix intros, recaps, and next episode prompts.”。
扩展截图
下载Netflix Skipper扩展crx文件
下载Netflix Skipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically skip Netflix intros, recaps, and next episode prompts. Don't waste any more time waiting or clicking on intros, recaps, and next episode buttons. Once the extension is installed, reload or open a Netflix Tab, and it will work automatically. Through the popup, you can configure which events (intros, recaps, and next episode) you would like to skip. This extension supports ALL Netflix languages! GitHub repo: https://github.com/ranrib/netflix-skipper
扩展基本信息
名称 | Netflix Skipper |
ID | lgmpgoepilkhieepoliajnandndkffab |
官方URL | https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab |
简介 | Automatically skip Netflix intros, recaps, and next episode prompts. |
文件大小 | 147 KB |
安装次数 | 3,415 |
当前版本 | 1.0 |
更新时间 | 2022-01-27 |
上架时间 | 2022-01-27 |
评分 | 5.00/5 共9次评分 |
开发者 | Ran Ribenzaft |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ranrib/netflix-skipper |
帮助页面URL | https://github.com/ranrib/netflix-skipper |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Skipper", "description": "Automatically skip Netflix intros, recaps, and next episode prompts.", "author": "Ran Ribenzaft", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_script.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "src\/popup.html", "default_icon": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } }, "icons": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } } |