TimeSkip
Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
ما هو TimeSkip؟
TimeSkip هو إضافة Chrome تم تطويرها بواسطة Romen Poirier Taksev، والميزة الرئيسية لها هي "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TimeSkip
قم بتنزيل ملفات الامتداد TimeSkip بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Tired of having to look in the comments to find the time of the title card while binging anime? Look no further! TimeSkip will look through the comments and skip you to the title card, all at the press of a button.
معلومات أساسية عن التمديد
الاسم | TimeSkip |
ID | giaaeacihhelmkfcdfkepoijleaddajp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp |
الوصف | Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover. |
حجم الملف | 11.28 KB |
عدد التثبيتات | 20 |
النسخة الحالية | 1.3.0 |
آخر تحديث | 2021-10-14 |
تاريخ النشر | 2021-09-26 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Romen Poirier Taksev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TimeSkip", "version": "1.3.0", "description": "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.htm", "default_icon": [] }, "content_scripts": [ { "matches": [ "https:\/\/*.crunchyroll.com\/*" ], "run_at": "document_end", "all_frames": true, "js": [ "playback.js", "contentScript.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "tabs" ], "manifest_version": 2, "icons": { "128": "TimeSkip 128x128.png" } } |