Crunchyroll One Piece Title Card Skipper
Skip to title card and improve the One Piece experience.
Cos'è Crunchyroll One Piece Title Card Skipper?
Crunchyroll One Piece Title Card Skipper è un'estensione di Chrome sviluppata da rdongre, e la sua funzione principale è "Skip to title card and improve the One Piece experience.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Crunchyroll One Piece Title Card Skipper
Scarica i file di estensione Crunchyroll One Piece Title Card 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 allows you to:
- Skip to the title card of One Piece in Crunchyroll based on user comments
- Increase playback speed up to 2x on all of Crunchyroll
- Decrease playback speed on all of Crunchyroll Informazioni di Base sull'Estensione
| Nome | |
| ID | nnndgckkckldmgmjhdeinogflbneicic |
| URL Ufficiale | https://chromewebstore.google.com/detail/crunchyroll-one-piece-tit/nnndgckkckldmgmjhdeinogflbneicic |
| Descrizione | Skip to title card and improve the One Piece experience. |
| Dimensione del File | 21.45 KB |
| Conteggio Installazioni | 174 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2021-02-01 |
| Data di Pubblicazione | 2021-01-31 |
| Valutazione | 2.00/5 Totale 4 Valutazioni |
| Sviluppatore | rdongre |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Crunchyroll One Piece Title Card Skipper",
"version": "1.0.0",
"description": "Skip to title card and improve the One Piece experience.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"128": "icon.png"
},
"page_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.crunchyroll.com\/*"
],
"run_at": "document_end",
"all_frames": true,
"js": [
"playback.js"
]
}
],
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"manifest_version": 2
} | |