Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Co to jest Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper to rozszerzenie Chrome opracowane przez Ian Hsiao, a jego główną funkcją jest „Allows intros to be skipped through a skip button on Crunchyroll”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Crunchyroll Intro Skipper
Pobierz pliki rozszerzeń Crunchyroll Intro Skipper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
Oficjalny URL | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Opis | Allows intros to be skipped through a skip button on Crunchyroll |
Rozmiar pliku | 29.51 KB |
Liczba instalacji | 1,091 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-08-05 |
Data Publikacji | 2020-06-17 |
Ocena | 2.81/5 Łącznie 16 Oceny |
Deweloper | Ian Hsiao |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/ianjjhsiao/skipintro |
Obsługiwane Języki | 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" } |