YouTube: No Shorts, No Community, No Nonsense
Disables different sections for a more enjoyable experience.
ما هو YouTube: No Shorts, No Community, No Nonsense؟
YouTube: No Shorts, No Community, No Nonsense هو إضافة Chrome تم تطويرها بواسطة Oh Thomas، والميزة الرئيسية لها هي "Disables different sections for a more enjoyable experience.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube: No Shorts, No Community, No Nonsense
قم بتنزيل ملفات الامتداد YouTube: No Shorts, No Community, No Nonsense بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Choose which sections you'd like to block from loading to save your sanity from the gobble-de-gook they attract. Don't let unwanted content take up your time and space.
Source code:
https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense معلومات أساسية عن التمديد
| الاسم | |
| ID | ailbpknjjkdokgecbhhdcmgponjnkaon |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-no-shorts-no-comm/ailbpknjjkdokgecbhhdcmgponjnkaon |
| الوصف | Disables different sections for a more enjoyable experience. |
| حجم الملف | 35.86 KB |
| عدد التثبيتات | 39 |
| النسخة الحالية | 0.6660 |
| آخر تحديث | 2023-11-01 |
| تاريخ النشر | 2023-10-07 |
| المطور | Oh Thomas |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/OhThomas/YouTube-No-Shorts-No-Community-No-Nonsense |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube: No Shorts, No Community, No Nonsense",
"description": "Disables different sections for a more enjoyable experience.",
"version": "0.6660",
"author": "Oh Thomas",
"action": {
"default_popup": ".\/dsc.html",
"default_icon": {
"16": ".\/images\/dsc16halloween.png",
"32": ".\/images\/dsc32halloween.png",
"48": ".\/images\/dsc48halloween.png",
"64": ".\/images\/dsc64halloween.png",
"96": ".\/images\/dsc96halloween.png",
"128": ".\/images\/dsc128halloween.png"
}
},
"icons": {
"16": ".\/images\/dsc16halloween.png",
"32": ".\/images\/dsc32halloween.png",
"64": ".\/images\/dsc64halloween.png",
"96": ".\/images\/dsc96halloween.png",
"128": ".\/images\/dsc128halloween.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"run_at": "document_start",
"js": [
".\/dsc.js"
],
"css": [
".\/dsc.css"
]
}
]
} | |