Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

O que é Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper é uma extensão do Chrome desenvolvida por Ramon Quitales, e sua principal característica é "Allows intros to be skipped through a skip button on Crunchyroll".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Crunchyroll Intro Skipper

Baixe arquivos de extensão Crunchyroll Intro 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 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).                    

Informações Básicas da Extensão

Nome Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID enphflaephhmabkpchhgkhkfcblbhiip
URL Oficial https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip
Descrição Allows intros to be skipped through a skip button on Crunchyroll
Tamanho do Arquivo 15.16 KB
Contagem de Instalações 1,310
Versão Atual 0.2.1
Última Atualização 2021-04-06
Data de Publicação 2021-03-02
Classificação 3.57/5 Total de 14 Avaliações
Desenvolvedor Ramon Quitales
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/rquitales/crunchyroll-intro-skipper
URL da Página de Ajuda https://github.com/rquitales/crunchyroll-intro-skipper/issues
Idiomas Suportados 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"
}