Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Cos'è Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper è un'estensione di Chrome sviluppata da Ramon Quitales, e la sua funzione principale è "Allows intros to be skipped through a skip button on Crunchyroll".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Crunchyroll Intro Skipper
Scarica i file di estensione Crunchyroll Intro Skipper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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).
Informazioni di Base sull'Estensione
Nome | Crunchyroll Intro Skipper |
ID | enphflaephhmabkpchhgkhkfcblbhiip |
URL Ufficiale | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip |
Descrizione | Allows intros to be skipped through a skip button on Crunchyroll |
Dimensione del File | 15.16 KB |
Conteggio Installazioni | 1,310 |
Versione Corrente | 0.2.1 |
Ultimo Aggiornamento | 2021-04-06 |
Data di Pubblicazione | 2021-03-02 |
Valutazione | 3.57/5 Totale 14 Valutazioni |
Sviluppatore | Ramon Quitales |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/rquitales/crunchyroll-intro-skipper |
URL della Pagina di Aiuto | https://github.com/rquitales/crunchyroll-intro-skipper/issues |
Lingue Supportate | 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" } |