Youtube short to video converter
Convert a Youtube video to a short.
ما هو Youtube short to video converter؟
Youtube short to video converter هو إضافة Chrome تم تطويرها بواسطة https://leonardochen.dev، والميزة الرئيسية لها هي "Convert a Youtube video to a short.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube short to video converter
قم بتنزيل ملفات الامتداد Youtube short to video converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Elevate your experience with YouTube shorts by incorporating essential tools directly into your shorts content. Introducing added buttons that seamlessly toggle between YouTube's shorts and videos, giving you greater control over your viewing journey.
معلومات أساسية عن التمديد
الاسم | Youtube short to video converter |
ID | ahpfmcbhbecekponcmndgbalgncfelab |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-short-to-video-co/ahpfmcbhbecekponcmndgbalgncfelab |
الوصف | Convert a Youtube video to a short. |
حجم الملف | 111 KB |
عدد التثبيتات | 137 |
النسخة الحالية | 2.0.1 |
آخر تحديث | 2023-08-28 |
تاريخ النشر | 2023-08-07 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://leonardochen.dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube short to video converter", "version": "2.0.1", "description": "Convert a Youtube video to a short.", "author": "[email protected]", "action": { "default_icon": "icons\/convertIcon.png" }, "icons": { "16": "icons\/convertIcon-16x16.png", "48": "icons\/convertIcon-48x48.png", "128": "icons\/convertIcon-128x128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "scripts\/contentVid.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/iconWebCol.png", "icons\/iconVidWhite.png" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "permissions": [ "scripting", "tabs" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+B", "mac": "Command+B" } } } } |