Roll Together

Synchronize Crunchyroll Videos and Skip Intros

Qu'est-ce que Roll Together ?

Roll Together est une extension Chrome développée par Roll Together Team, et sa fonction principale est "Synchronize Crunchyroll Videos and Skip Intros".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Roll Together

Téléchargez les fichiers d'extension Roll Together au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Roll Together Roll Together
ID ilpfeljgdikoabaclkjgkbeegeoijfca
URL Officiel https://chromewebstore.google.com/detail/roll-together/ilpfeljgdikoabaclkjgkbeegeoijfca
Description Synchronize Crunchyroll Videos and Skip Intros
Taille du Fichier 621 KB
Nombre d'Installations 58,880
Version Actuelle 3.0.1
Dernière Mise à Jour 2023-07-25
Date de Publication 2020-06-16
Évaluation 4.45/5 Total 73 Évaluations
Développeur Roll Together Team
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/samuraiexx/roll_together
URL de la Page d'Aide https://github.com/samuraiexx/roll_together/issues
Langues Prises en Charge 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
}