Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
Qu'est-ce que Netflix Skipper ?
Netflix Skipper est une extension Chrome développée par Ran Ribenzaft, et sa fonction principale est "Automatically skip Netflix intros, recaps, and next episode prompts.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix Skipper
Téléchargez les fichiers d'extension Netflix Skipper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Netflix Skipper |
ID | lgmpgoepilkhieepoliajnandndkffab |
URL Officiel | https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab |
Description | Automatically skip Netflix intros, recaps, and next episode prompts. |
Taille du Fichier | 147 KB |
Nombre d'Installations | 3,415 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2022-01-27 |
Date de Publication | 2022-01-27 |
Évaluation | 5.00/5 Total 9 Évaluations |
Développeur | Ran Ribenzaft |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ranrib/netflix-skipper |
URL de la Page d'Aide | https://github.com/ranrib/netflix-skipper |
Langues Prises en Charge | 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" } } |