YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
ما هو YouTube Blur؟
YouTube Blur هو إضافة Chrome تم تطويرها بواسطة codedbyleo، والميزة الرئيسية لها هي "Avoid distractions on YouTube by blurring the thumbnails on the homepage".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Blur
قم بتنزيل ملفات الامتداد YouTube Blur بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage. Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus! PRIVACY I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.
معلومات أساسية عن التمديد
الاسم | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
الوصف | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
حجم الملف | 17.86 KB |
عدد التثبيتات | 569 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-09-27 |
تاريخ النشر | 2021-09-24 |
تقييم | 4.00/5 مجموع تقييمات 2 |
المطور | codedbyleo |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Blur", "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage", "manifest_version": 3, "version": "1.0.0", "icons": { "128": "icon_128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/" ], "js": [ "blur.js" ] } ] } |