Roll Together
Synchronize Crunchyroll Videos and Skip Intros
ما هو Roll Together؟
Roll Together هو إضافة Chrome تم تطويرها بواسطة Roll Together Team، والميزة الرئيسية لها هي "Synchronize Crunchyroll Videos and Skip Intros".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Roll Together
قم بتنزيل ملفات الامتداد Roll Together بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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 } |