Roll Together

Synchronize Crunchyroll Videos and Skip Intros

Roll Together란 무엇입니까?

Roll Together은(는) Roll Together Team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Synchronize Crunchyroll Videos and Skip Intros"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Roll Together 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}