Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
What is Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper is a Chrome extension developed by Ian Hsiao, and its main feature is "Allows intros to be skipped through a skip button on Crunchyroll".
Extension Screenshots
Download Crunchyroll Intro Skipper Extension CRX File
Download Crunchyroll Intro Skipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
Official URL | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Description | Allows intros to be skipped through a skip button on Crunchyroll |
File Size | 29.51 KB |
Installation Count | 1,091 |
Current Version | 1.0 |
Last Updated | 2020-08-05 |
Publish Date | 2020-06-17 |
Rating | 2.81/5 Total 16 Ratings |
Developer | Ian Hsiao |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/ianjjhsiao/skipintro |
Supported Languages | 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" } |