Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Что такое Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper - это расширение Chrome, разработанное Ramon Quitales, и его основная функция - "Allows intros to be skipped through a skip button on Crunchyroll".
Снимки экрана расширения
Скачать файл CRX расширения Crunchyroll Intro Skipper
Скачайте файлы расширений Crunchyroll Intro Skipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension parses through the episode comments to determine if there are any intro timestamps posted. If there are no valid timestamps within the comments, it will fallback to using Crunchyroll's ad locations to determine the best position. To use this extension, a `SKIP INTRO` button is overlaid onto the Crunchyroll video player which you can click to skip the episode intro. The button also indicates how it got the timestamp (either through someone's comment on the page, or through ad locations).
Основная информация о расширении
Название | Crunchyroll Intro Skipper |
ID | enphflaephhmabkpchhgkhkfcblbhiip |
Официальный URL | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip |
Описание | Allows intros to be skipped through a skip button on Crunchyroll |
Размер файла | 15.16 KB |
Количество установок | 1,310 |
Текущая Версия | 0.2.1 |
Последнее Обновление | 2021-04-06 |
Дата публикации | 2021-03-02 |
Рейтинг | 3.57/5 Всего 14 оценок |
Разработчик | Ramon Quitales |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/rquitales/crunchyroll-intro-skipper |
URL страницы помощи | https://github.com/rquitales/crunchyroll-intro-skipper/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "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": "assets\/images\/icon.png", "128": "assets\/images\/large_icon.png" }, "background": { "scripts": [ "js\/background_script.js" ], "persistent": false }, "manifest_version": 2, "name": "Crunchyroll Intro Skipper", "author": "Ramon Quitales", "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "version": "0.2.1" } |