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 Ramon Quitales, et sa fonction principale est "Allows intros to be skipped through a skip button on Crunchyroll".

Captures d'Écran de l'Extension

screenshot

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

                        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).                    

Informations de Base sur l'Extension

Nom Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID enphflaephhmabkpchhgkhkfcblbhiip
URL Officiel https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip
Description Allows intros to be skipped through a skip button on Crunchyroll
Taille du Fichier 15.16 KB
Nombre d'Installations 1,310
Version Actuelle 0.2.1
Dernière Mise à Jour 2021-04-06
Date de Publication 2021-03-02
Évaluation 3.57/5 Total 14 Évaluations
Développeur Ramon Quitales
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/rquitales/crunchyroll-intro-skipper
URL de la Page d'Aide https://github.com/rquitales/crunchyroll-intro-skipper/issues
Langues Prises en Charge 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"
}