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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
URL страницы помощи | 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" ] } ] } |