Hulu Random Episode Button
This extension adds a random episode button to Hulu.
ما هو Hulu Random Episode Button؟
Hulu Random Episode Button هو إضافة Chrome تم تطويرها بواسطة https://www.flixed.io، والميزة الرئيسية لها هي "This extension adds a random episode button to Hulu.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hulu Random Episode Button
قم بتنزيل ملفات الامتداد Hulu Random Episode Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
How it works:
1. Install the extension.
2. Click on any TV show. Next to "Episodes" you should see a "Random Episode" button.
3. If you're in the middle of playing an episode, you'll se a new button in the bottom right corner of the screen. It should look like two twin arrows. Click it, and you can switch to a random episode from there too.
Enjoy!
Developed by Flixed.io - A one-stop shop for learning about streaming and cord-cutting.
Change log:
V2.0.0 - We fixed an issue that was causing Hulu to flag this extension as an adblocker.
V2.0.1 - The Random Button wasn't appearing on certain shows. This has also been fixed.
V3.0.0 - Updated to become compatible with Hulu's latest design. Added a random episode button to the playback screen as well. معلومات أساسية عن التمديد
| الاسم | |
| ID | akoihfghmfploepdiblpfpifgjekbkmg |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/hulu-random-episode-butto/akoihfghmfploepdiblpfpifgjekbkmg |
| الوصف | This extension adds a random episode button to Hulu. |
| حجم الملف | 138 KB |
| عدد التثبيتات | 1,286 |
| النسخة الحالية | 3.0.0 |
| آخر تحديث | 2019-06-17 |
| تاريخ النشر | 2019-06-17 |
| تقييم | 2.54/5 مجموع تقييمات 35 |
| المطور | https://www.flixed.io |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://flixed.io |
| عنوان صفحة المساعدة | https://flixed.io/contact-us/ |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hulu Random Episode Button",
"version": "3.0.0",
"version_name": "3.0.0",
"description": "This extension adds a random episode button to Hulu.",
"icons": {
"128": "\/img\/logo.png"
},
"browser_action": {
"default_icon": "\/img\/logo.png",
"default_popup": "\/pages\/popup\/index.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.hulu.com\/*"
],
"js": [
"\/js\/main_content_script.js"
]
}
],
"permissions": [
"https:\/\/www.hulu.com\/*"
],
"web_accessible_resources": [
"\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net; object-src 'self'"
} | |