TimeSkip

Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.

TimeSkip là gì?

TimeSkip là một tiện ích mở rộng Chrome được phát triển bởi Romen Poirier Taksev, và tính năng chính của nó là "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TimeSkip

Tải xuống các tệp mở rộng TimeSkip dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TimeSkip TimeSkip
ID giaaeacihhelmkfcdfkepoijleaddajp
URL Chính Thức https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp
Mô tả Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
Kích Thước Tệp 11.28 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2021-10-14
Ngày Phát Hành 2021-09-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Romen Poirier Taksev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}