Awoo
Automatically find and auto-play Halloween-themed episodes on Netflix!
ما هو Awoo؟
Awoo هو إضافة Chrome تم تطويرها بواسطة Darryl، والميزة الرئيسية لها هي "Automatically find and auto-play Halloween-themed episodes on Netflix!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Awoo
قم بتنزيل ملفات الامتداد Awoo بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Inspired by old Halloween marathons like ABC's 13 Nights of Halloween, Awoo helps you automatically find a mix of Halloween-themed episodes of sitcoms, dramas, etc, on Netflix and plays them at random. When you're finished with an episode, it'll play the next.
معلومات أساسية عن التمديد
الاسم | Awoo |
ID | mcenajfoimechlkofjmcplnaneediadc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/awoo/mcenajfoimechlkofjmcplnaneediadc |
الوصف | Automatically find and auto-play Halloween-themed episodes on Netflix! |
حجم الملف | 2.47 MB |
عدد التثبيتات | 25 |
النسخة الحالية | 0.1 |
آخر تحديث | 2016-10-21 |
تاريخ النشر | 2016-10-20 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Darryl |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Awoo", "description": "Automatically find and auto-play Halloween-themed episodes on Netflix!", "version": "0.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Stream a random Halloween-themed episode from Netflix." }, "background": { "scripts": [ "background-script.js" ] }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "jquery.js", "content.js" ] } ] } |