Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
ما هو Hide Latest Video Performance - YT؟
Hide Latest Video Performance - YT هو إضافة Chrome تم تطويرها بواسطة taranasus، والميزة الرئيسية لها هي "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hide Latest Video Performance - YT
قم بتنزيل ملفات الامتداد Hide Latest Video Performance - YT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A lot of YouTube creators find the "Latest Video Performance" widget in the YouTube creator studio less that useful - that is, they actually find it harmful to their mental health. As a small-time creator myself, I agree! So I've made this extension that completely hides that widget from the channel dashboard and a creator will never have to deal with it again. Link to video presentation: https://youtu.be/59Jkn1YSMFw Link to my channel: https://www.youtube.com/c/TaranasusVideos Source code can be found in video presentation description.
معلومات أساسية عن التمديد
الاسم | Hide Latest Video Performance - YT |
ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
الوصف | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
حجم الملف | 12.36 KB |
عدد التثبيتات | 10,127 |
النسخة الحالية | 1.0 |
آخر تحديث | 2022-07-24 |
تاريخ النشر | 2022-07-20 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | taranasus |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.youtube.com/watch?v=59Jkn1YSMFw |
عنوان صفحة المساعدة | https://github.com/taranasus/HideLatestVideoPerformance |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Latest Video Performance - YT", "description": "Hides the \"Latest video performance\" widget within the YouTube Studio dashboard.", "version": "1.0", "manifest_version": 3, "action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" } }, "content_scripts": [ { "matches": [ "*:\/\/studio.youtube.com\/*" ], "js": [ "hideWidget.js" ], "css": [ "hideWidget.css" ] } ] } |