Roll Together
Synchronize Crunchyroll Videos and Skip Intros
Cos'è Roll Together?
Roll Together è un'estensione di Chrome sviluppata da Roll Together Team, e la sua funzione principale è "Synchronize Crunchyroll Videos and Skip Intros".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Roll Together
Scarica i file di estensione Roll Together in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Roll Together |
ID | ilpfeljgdikoabaclkjgkbeegeoijfca |
URL Ufficiale | https://chromewebstore.google.com/detail/roll-together/ilpfeljgdikoabaclkjgkbeegeoijfca |
Descrizione | Synchronize Crunchyroll Videos and Skip Intros |
Dimensione del File | 621 KB |
Conteggio Installazioni | 58,880 |
Versione Corrente | 3.0.1 |
Ultimo Aggiornamento | 2023-07-25 |
Data di Pubblicazione | 2020-06-16 |
Valutazione | 4.45/5 Totale 73 Valutazioni |
Sviluppatore | Roll Together Team |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/samuraiexx/roll_together |
URL della Pagina di Aiuto | https://github.com/samuraiexx/roll_together/issues |
Lingue Supportate | 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 } |