Youtube Short Controller
Youtube Shorts Controller
ما هو Youtube Short Controller؟
Youtube Short Controller هو إضافة Chrome تم تطويرها بواسطة https://misa198.vercel.app، والميزة الرئيسية لها هي "Youtube Shorts Controller".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Short Controller
قم بتنزيل ملفات الامتداد Youtube Short Controller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.
معلومات أساسية عن التمديد
الاسم | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
الوصف | Youtube Shorts Controller |
حجم الملف | 24.95 KB |
عدد التثبيتات | 3,214 |
النسخة الحالية | 1.0.5 |
آخر تحديث | 2022-10-15 |
تاريخ النشر | 2022-04-28 |
تقييم | 3.94/5 مجموع تقييمات 16 |
المطور | https://misa198.vercel.app |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/misa198/youtube-shorts-controller |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Youtube Shorts Controller", "version": "1.0.5", "author": "Thanh Vu", "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller", "manifest_version": 3, "name": "Youtube Short Controller", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "icons": { "16": "icons\/icon16.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage" ], "action": { "default_icon": "icons\/icon64.png", "default_popup": "popup.html" } } |