Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
ما هو Crunchyroll Intro Skipper؟
Crunchyroll Intro Skipper هو إضافة Chrome تم تطويرها بواسطة Ian Hsiao، والميزة الرئيسية لها هي "Allows intros to be skipped through a skip button on Crunchyroll".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Crunchyroll Intro Skipper
قم بتنزيل ملفات الامتداد Crunchyroll Intro Skipper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Skips anime intros with a single button. Finds when the intro ends by skipping to the timestamp of the first advertisement. *Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.
معلومات أساسية عن التمديد
الاسم | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
الوصف | Allows intros to be skipped through a skip button on Crunchyroll |
حجم الملف | 29.51 KB |
عدد التثبيتات | 1,091 |
النسخة الحالية | 1.0 |
آخر تحديث | 2020-08-05 |
تاريخ النشر | 2020-06-17 |
تقييم | 2.81/5 مجموع تقييمات 16 |
المطور | Ian Hsiao |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/ianjjhsiao/skipintro |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*" ] } ], "description": "Allows intros to be skipped through a skip button on Crunchyroll", "icons": { "16": "icon.png", "128": "Big_icon.png" }, "background": { "scripts": [ "background_script.js" ], "persistent": false }, "manifest_version": 2, "name": "Crunchyroll Intro Skipper", "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "version": "1.0" } |