Crunchyroll One Piece Title Card Skipper

Skip to title card and improve the One Piece experience.

Was ist Crunchyroll One Piece Title Card Skipper?

Crunchyroll One Piece Title Card Skipper ist eine Chrome-Erweiterung, die von rdongre entwickelt wurde, und ihr Hauptmerkmal ist "Skip to title card and improve the One Piece experience.".

Erweiterungsscreenshots

screenshot

Crunchyroll One Piece Title Card Skipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Crunchyroll One Piece Title Card Skipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Crunchyroll One Piece Title Card Skipper Crunchyroll One Piece Title Card Skipper
ID nnndgckkckldmgmjhdeinogflbneicic
Offizielle URL https://chromewebstore.google.com/detail/crunchyroll-one-piece-tit/nnndgckkckldmgmjhdeinogflbneicic
Beschreibung Skip to title card and improve the One Piece experience.
Dateigröße 21.45 KB
Installationsanzahl 174
Aktuelle Version 1.0.0
Letztes Update 2021-02-01
Veröffentlichungsdatum 2021-01-31
Bewertung 2.00/5 Insgesamt 4 Bewertungen
Entwickler rdongre
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}