No Shorts
Redirects YouTube Shorts to YouTube videos.
ما هو No Shorts؟
No Shorts هو إضافة Chrome تم تطويرها بواسطة Wock، والميزة الرئيسية لها هي "Redirects YouTube Shorts to YouTube videos.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة No Shorts
قم بتنزيل ملفات الامتداد No Shorts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension that redirects YouTube short player urls to the normal YouTube player. I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it. It does one job, and only one job. The only permission it needs is tabs, to handle YouTube onsite redirects.
معلومات أساسية عن التمديد
الاسم | No Shorts |
ID | gepjlgfjbeimidbimhjljdncopgelebl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl |
الوصف | Redirects YouTube Shorts to YouTube videos. |
حجم الملف | 12.74 KB |
عدد التثبيتات | 117 |
النسخة الحالية | 1.0 |
آخر تحديث | 2022-10-27 |
تاريخ النشر | 2022-10-26 |
تقييم | 4.20/5 مجموع تقييمات 5 |
المطور | Wock |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "No Shorts", "version": "1.0", "description": "Redirects YouTube Shorts to YouTube videos.", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" } } |