Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
ما هو Netflix Skipper؟
Netflix Skipper هو إضافة Chrome تم تطويرها بواسطة Ran Ribenzaft، والميزة الرئيسية لها هي "Automatically skip Netflix intros, recaps, and next episode prompts.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Netflix Skipper
قم بتنزيل ملفات الامتداد Netflix Skipper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } } |