No YouTube Shorts
Removes all Shorts from YouTube
ما هو No YouTube Shorts؟
No YouTube Shorts هو إضافة Chrome تم تطويرها بواسطة Ben، والميزة الرئيسية لها هي "Removes all Shorts from YouTube".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة No YouTube Shorts
قم بتنزيل ملفات الامتداد No YouTube Shorts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Tired of the YouTube Shorts? No problem, this extension has your back and removes them from the YouTube page! New in version 0.6.2: - Bugfixes Bugs? Improvement ideas? Feel free to message me.
معلومات أساسية عن التمديد
الاسم | No YouTube Shorts |
ID | hjfkenebldkfgibelglepinlabpjfbll |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll |
الوصف | Removes all Shorts from YouTube |
حجم الملف | 37.34 KB |
عدد التثبيتات | 60,000 |
النسخة الحالية | 0.6.2 |
آخر تحديث | 2023-09-27 |
تاريخ النشر | 2022-03-03 |
تقييم | 4.31/5 مجموع تقييمات 240 |
المطور | Ben |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No YouTube Shorts", "description": "Removes all Shorts from YouTube", "version": "0.6.2", "action": { "default_popup": "popup.html", "default_title": "No YouTube Shorts" }, "manifest_version": 3, "default_locale": "en", "permissions": [ "declarativeContent", "storage", "tabs", "management" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "no-youtube-shorts-content-script.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "no-youtube-shorts-background-script.js" }, "icons": { "48": "assets\/img\/logo48.png", "128": "assets\/img\/logo128.png" }, "web_accessible_resources": [ { "resources": [ "assets\/no-youtube-shorts.css" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |