Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Qu'est-ce que Crunchyroll Intro Skipper ?
Crunchyroll Intro Skipper est une extension Chrome développée par Ian Hsiao, et sa fonction principale est "Allows intros to be skipped through a skip button on Crunchyroll".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crunchyroll Intro Skipper
Téléchargez les fichiers d'extension Crunchyroll Intro Skipper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
URL Officiel | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Description | Allows intros to be skipped through a skip button on Crunchyroll |
Taille du Fichier | 29.51 KB |
Nombre d'Installations | 1,091 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-08-05 |
Date de Publication | 2020-06-17 |
Évaluation | 2.81/5 Total 16 Évaluations |
Développeur | Ian Hsiao |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/ianjjhsiao/skipintro |
Langues Prises en Charge | 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" } |