Crunchyroll One Piece Title Card Skipper

Skip to title card and improve the One Piece experience.

Co to jest Crunchyroll One Piece Title Card Skipper?

Crunchyroll One Piece Title Card Skipper to rozszerzenie Chrome opracowane przez rdongre, a jego główną funkcją jest „Skip to title card and improve the One Piece experience.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Crunchyroll One Piece Title Card Skipper

Pobierz pliki rozszerzeń Crunchyroll One Piece Title Card Skipper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Crunchyroll One Piece Title Card Skipper Crunchyroll One Piece Title Card Skipper
ID nnndgckkckldmgmjhdeinogflbneicic
Oficjalny URL https://chromewebstore.google.com/detail/crunchyroll-one-piece-tit/nnndgckkckldmgmjhdeinogflbneicic
Opis Skip to title card and improve the One Piece experience.
Rozmiar pliku 21.45 KB
Liczba instalacji 174
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-02-01
Data Publikacji 2021-01-31
Ocena 2.00/5 Łącznie 4 Oceny
Deweloper rdongre
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}