Autoskip Netflix Intro
Skip the intro's on netflix
ما هو Autoskip Netflix Intro؟
Autoskip Netflix Intro هو إضافة Chrome تم تطويرها بواسطة Lukas Demeyere، والميزة الرئيسية لها هي "Skip the intro's on netflix".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Autoskip Netflix Intro
قم بتنزيل ملفات الامتداد Autoskip Netflix Intro بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Binging your favourite show and getting tired of clicking the button to skip the intro of your Netflix episode? This extension does this automatically for you. You can easy enable/disable this feature. Skip to Next Episode --- You need to refresh your Netflix tab so the extension is loaded and can skip the intro automatically. ---
معلومات أساسية عن التمديد
الاسم | Autoskip Netflix Intro |
ID | olljgnejdhpmoolooihgcdoannkfodji |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/autoskip-netflix-intro/olljgnejdhpmoolooihgcdoannkfodji |
الوصف | Skip the intro's on netflix |
حجم الملف | 463 KB |
عدد التثبيتات | 158 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2023-04-13 |
تاريخ النشر | 2020-06-10 |
تقييم | 2.78/5 مجموع تقييمات 9 |
المطور | Lukas Demeyere |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Autoskip Netflix Intro", "version": "0.0.5", "manifest_version": 3, "description": "Skip the intro's on netflix", "icons": { "16": "icons\/netskips16.png", "48": "icons\/netskips48.png", "128": "icons\/netskips128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_title": "Start skipping" }, "permissions": [ "storage" ] } |