Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
ما هو Crunchyroll Intro Skipper؟
Crunchyroll Intro Skipper هو إضافة Chrome تم تطويرها بواسطة Ramon Quitales، والميزة الرئيسية لها هي "Allows intros to be skipped through a skip button on Crunchyroll".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Crunchyroll Intro Skipper
قم بتنزيل ملفات الامتداد Crunchyroll Intro Skipper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension parses through the episode comments to determine if there are any intro timestamps posted. If there are no valid timestamps within the comments, it will fallback to using Crunchyroll's ad locations to determine the best position. To use this extension, a `SKIP INTRO` button is overlaid onto the Crunchyroll video player which you can click to skip the episode intro. The button also indicates how it got the timestamp (either through someone's comment on the page, or through ad locations).
معلومات أساسية عن التمديد
الاسم | Crunchyroll Intro Skipper |
ID | enphflaephhmabkpchhgkhkfcblbhiip |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip |
الوصف | Allows intros to be skipped through a skip button on Crunchyroll |
حجم الملف | 15.16 KB |
عدد التثبيتات | 1,310 |
النسخة الحالية | 0.2.1 |
آخر تحديث | 2021-04-06 |
تاريخ النشر | 2021-03-02 |
تقييم | 3.57/5 مجموع تقييمات 14 |
المطور | Ramon Quitales |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/rquitales/crunchyroll-intro-skipper |
عنوان صفحة المساعدة | https://github.com/rquitales/crunchyroll-intro-skipper/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "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": "assets\/images\/icon.png", "128": "assets\/images\/large_icon.png" }, "background": { "scripts": [ "js\/background_script.js" ], "persistent": false }, "manifest_version": 2, "name": "Crunchyroll Intro Skipper", "author": "Ramon Quitales", "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "version": "0.2.1" } |