Roll Together

Synchronize Crunchyroll Videos and Skip Intros

Roll Together क्या है?

Roll Together Roll Together Team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Synchronize Crunchyroll Videos and Skip Intros"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Roll Together एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Roll Together Roll Together
ID ilpfeljgdikoabaclkjgkbeegeoijfca
आधिकारिक URL https://chromewebstore.google.com/detail/roll-together/ilpfeljgdikoabaclkjgkbeegeoijfca
विवरण Synchronize Crunchyroll Videos and Skip Intros
फ़ाइल का आकार 621 KB
स्थापना संख्या 58,880
वर्तमान संस्करण 3.0.1
अंतिम अपडेट 2023-07-25
प्रकाशन तिथि 2020-06-16
रेटिंग 4.45/5 कुल 73 रेटिंग्स
डेवलपर Roll Together Team
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/samuraiexx/roll_together
सहायता पृष्ठ URL https://github.com/samuraiexx/roll_together/issues
समर्थित भाषाएँ 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
}