Crunchyroll One Piece Title Card Skipper

Skip to title card and improve the One Piece experience.

O que é Crunchyroll One Piece Title Card Skipper?

Crunchyroll One Piece Title Card Skipper é uma extensão do Chrome desenvolvida por rdongre, e sua principal característica é "Skip to title card and improve the One Piece experience.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Crunchyroll One Piece Title Card Skipper

Baixe arquivos de extensão Crunchyroll One Piece Title Card Skipper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Crunchyroll One Piece Title Card Skipper Crunchyroll One Piece Title Card Skipper
ID nnndgckkckldmgmjhdeinogflbneicic
URL Oficial https://chromewebstore.google.com/detail/crunchyroll-one-piece-tit/nnndgckkckldmgmjhdeinogflbneicic
Descrição Skip to title card and improve the One Piece experience.
Tamanho do Arquivo 21.45 KB
Contagem de Instalações 174
Versão Atual 1.0.0
Última Atualização 2021-02-01
Data de Publicação 2021-01-31
Classificação 2.00/5 Total de 4 Avaliações
Desenvolvedor rdongre
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}