Roll Together

Synchronize Crunchyroll Videos and Skip Intros

O que é Roll Together?

Roll Together é uma extensão do Chrome desenvolvida por Roll Together Team, e sua principal característica é "Synchronize Crunchyroll Videos and Skip Intros".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Roll Together

Baixe arquivos de extensão Roll Together 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

                        Sync Crunchyroll videos with your friends! For example, whenever someone pauses, all users in the same room will also have their videos paused.

It also includes a feature that allows users to Skip the episode's intro. To use this feature, you need to enable it on the options page! It's still in beta, so the Skip button may not always appear.                    

Informações Básicas da Extensão

Nome Roll Together Roll Together
ID ilpfeljgdikoabaclkjgkbeegeoijfca
URL Oficial https://chromewebstore.google.com/detail/roll-together/ilpfeljgdikoabaclkjgkbeegeoijfca
Descrição Synchronize Crunchyroll Videos and Skip Intros
Tamanho do Arquivo 621 KB
Contagem de Instalações 58,880
Versão Atual 3.0.1
Última Atualização 2023-07-25
Data de Publicação 2020-06-16
Classificação 4.45/5 Total de 73 Avaliações
Desenvolvedor Roll Together Team
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/samuraiexx/roll_together
URL da Página de Ajuda https://github.com/samuraiexx/roll_together/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Roll Together",
    "version": "3.0.1",
    "description": "Synchronize Crunchyroll Videos and Skip Intros",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/static.crunchyroll.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-3Ysffha\/L9RFJ1cEzjlxPSHl7yyXbbb05h9eNgaAqgE='; object-src 'self'",
    "permissions": [
        "storage",
        "declarativeContent",
        "*:\/\/www.crunchyroll.com\/*",
        "*:\/\/static.crunchyroll.com\/*",
        "*:\/\/roll-together-intro-skip.herokuapp.com\/*"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}