Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
ما هو Youtube Untrend؟
Youtube Untrend هو إضافة Chrome تم تطويرها بواسطة dorian.grolaux، والميزة الرئيسية لها هي "This extension simply removes the 'Trending' tab on the Youtube home page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Untrend
قم بتنزيل ملفات الامتداد Youtube Untrend بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Don't like this trending tab ? I don't either.
معلومات أساسية عن التمديد
الاسم | |
ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
الوصف | This extension simply removes the 'Trending' tab on the Youtube home page. |
حجم الملف | 29.2 KB |
عدد التثبيتات | 21 |
النسخة الحالية | 0.2 |
آخر تحديث | 2016-01-10 |
تاريخ النشر | 2016-01-10 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | dorian.grolaux |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Untrend", "short_name": "Removes the 'Trending' tab on Youtube's home page", "version": "0.2", "description": "This extension simply removes the 'Trending' tab on the Youtube home page.", "permissions": [ "activeTab", "*:\/\/www.youtube.com\/" ], "icons": { "16": "icons\/yt_untrend16.png", "48": "icons\/yt_untrend48.png", "128": "icons\/yt_untrend128.png" }, "offline_enabled": true, "page_action": { "default_icon": { "16": "icons\/yt_untrend16.png", "48": "icons\/yt_untrend48.png" }, "default_title": "Youtube Untrend" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/", "*:\/\/www.youtube.com\/feed\/*" ], "js": [ "script.js" ] } ] } |