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.".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
    }
}