Crunchyroll One Piece Title Card Skipper

Skip to title card and improve the One Piece experience.

Что такое Crunchyroll One Piece Title Card Skipper?

Crunchyroll One Piece Title Card Skipper - это расширение Chrome, разработанное rdongre, и его основная функция - "Skip to title card and improve the One Piece experience.".

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

screenshot

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

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

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

                        This extension allows you to: 
- Skip to the title card of One Piece in Crunchyroll based on user comments 
- Increase playback speed up to 2x on all of Crunchyroll
- Decrease playback speed on all of Crunchyroll                    

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

Название Crunchyroll One Piece Title Card Skipper Crunchyroll One Piece Title Card Skipper
ID nnndgckkckldmgmjhdeinogflbneicic
Официальный URL https://chromewebstore.google.com/detail/crunchyroll-one-piece-tit/nnndgckkckldmgmjhdeinogflbneicic
Описание Skip to title card and improve the One Piece experience.
Размер файла 21.45 KB
Количество установок 174
Текущая Версия 1.0.0
Последнее Обновление 2021-02-01
Дата публикации 2021-01-31
Рейтинг 2.00/5 Всего 4 оценок
Разработчик rdongre
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchyroll One Piece Title Card Skipper",
    "version": "1.0.0",
    "description": "Skip to title card and improve the One Piece experience.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon.png"
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.crunchyroll.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "playback.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "manifest_version": 2
}