Crunchyroll Skipper

Allows intros and outros to be skipped through a skip button per anime episode on Crunchyroll

Что такое Crunchyroll Skipper?

Crunchyroll Skipper - это расширение Chrome, разработанное Unknown, и его основная функция - "Allows intros and outros to be skipped through a skip button per anime episode on Crunchyroll".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Crunchyroll Skipper

Скачайте файлы расширений Crunchyroll Skipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        With this extension users can upload a time frame for either intros or outros per anime episode. Once a time frame is uploaded, a skip button will appear when the episode reaches the uploaded time frame. If the user clicks the skip button, the time frame will be skipped.                    

Основная информация о расширении

Название Crunchyroll Skipper Crunchyroll Skipper
ID ipanhcjnbhelglccnikmfmikmeakbcfk
Официальный URL https://chromewebstore.google.com/detail/crunchyroll-skipper/ipanhcjnbhelglccnikmfmikmeakbcfk
Описание Allows intros and outros to be skipped through a skip button per anime episode on Crunchyroll
Размер файла 19.04 KB
Количество установок 432
Текущая Версия 1.2
Последнее Обновление 2020-06-10
Дата публикации 2020-06-10
Рейтинг 4.33/5 Всего 3 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/Weretiger/crskipper
URL страницы помощи https://github.com/Weretiger/crskipper
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchyroll Skipper",
    "version": "1.2",
    "description": "Allows intros and outros to be skipped through a skip button per anime episode on Crunchyroll",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [],
    "manifest_version": 2
}