TimeSkip
Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
什麼是TimeSkip?
TimeSkip是由Romen Poirier Taksev開發的Chrome擴展程式,該擴展的主要功能是“Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.”。
擴展截圖
下載TimeSkip擴展crx文件
下載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 |
官方網址 | 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" } } |