Wimp Autoplay
An autoplayer for wimp.
ما هو Wimp Autoplay؟
Wimp Autoplay هو إضافة Chrome تم تطويرها بواسطة Ashkan، والميزة الرئيسية لها هي "An autoplayer for wimp.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Wimp Autoplay
قم بتنزيل ملفات الامتداد Wimp Autoplay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This a simple autoplaying agent for Wimp which adds two buttons below the video player which control autoplaying and how to autoplay (play next, previous, or random video after). This is a simple beta for now, if there is enough interest in it, then I will add features to it. Possible features include: keyboard navigation and same page loading of videos. However, I may also just make a website that is a better interface for Wimp, which may be better.
معلومات أساسية عن التمديد
الاسم | |
ID | oilleiaajfdnnclncmnonndldafmlpdl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/wimp-autoplay/oilleiaajfdnnclncmnonndldafmlpdl |
الوصف | An autoplayer for wimp. |
حجم الملف | 32.36 KB |
عدد التثبيتات | 109 |
النسخة الحالية | 0.13 |
آخر تحديث | 2014-01-13 |
تاريخ النشر | 2014-01-13 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Ashkan |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wimp Autoplay", "description": "An autoplayer for wimp.", "version": "0.13", "permissions": [ "http:\/\/www.wimp.com\/" ], "icons": { "16": "favicon16.png", "48": "favicon48.png", "128": "favicon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.wimp.com\/*" ], "js": [ "inject.js" ], "run_at": "document_idle" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "localstorage.js", "tracking.js" ] } |