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文件

下載Roll Together擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}