Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
What is Netflix Skipper?
Netflix Skipper is a Chrome extension developed by Ran Ribenzaft, and its main feature is "Automatically skip Netflix intros, recaps, and next episode prompts.".
Extension Screenshots
Download Netflix Skipper Extension CRX File
Download Netflix Skipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | lgmpgoepilkhieepoliajnandndkffab |
Official URL | https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab |
Description | Automatically skip Netflix intros, recaps, and next episode prompts. |
File Size | 147 KB |
Installation Count | 3,415 |
Current Version | 1.0 |
Last Updated | 2022-01-27 |
Publish Date | 2022-01-27 |
Rating | 5.00/5 Total 9 Ratings |
Developer | Ran Ribenzaft |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ranrib/netflix-skipper |
Help Page URL | https://github.com/ranrib/netflix-skipper |
Supported Languages | 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" } } |