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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |