Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Hvad er Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper er en Chrome-udvidelse udviklet af Ian Hsiao, og dens hovedfunktion er "Allows intros to be skipped through a skip button on Crunchyroll".
Udvidelsesskærmbilleder
Download Crunchyroll Intro Skipper-udvidelses-CRX-fil
Download Crunchyroll Intro Skipper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
Officiel URL | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Beskrivelse | Allows intros to be skipped through a skip button on Crunchyroll |
Filstørrelse | 29.51 KB |
Antal Installationer | 1,091 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-08-05 |
Udgivelsesdato | 2020-06-17 |
Bedømmelse | 2.81/5 Samlet 16 Bedømmelser |
Udvikler | Ian Hsiao |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/ianjjhsiao/skipintro |
Understøttede Sprog | 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" } |