Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Что такое Crunchyroll Intro Skipper?

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

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

screenshot

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

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

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

                        Skips anime intros with a single button.
Finds when the intro ends by skipping to the timestamp of the first advertisement.
*Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.                    

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

Название Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
Официальный URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
Описание Allows intros to be skipped through a skip button on Crunchyroll
Размер файла 29.51 KB
Количество установок 1,091
Текущая Версия 1.0
Последнее Обновление 2020-08-05
Дата публикации 2020-06-17
Рейтинг 2.81/5 Всего 16 оценок
Разработчик Ian Hsiao
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/ianjjhsiao/skipintro
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        }
    ],
    "description": "Allows intros to be skipped through a skip button on Crunchyroll",
    "icons": {
        "16": "icon.png",
        "128": "Big_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "1.0"
}