Hide Latest Video Performance - YT
Hides the "Latest video performance" widget within the YouTube Studio dashboard.
O que é Hide Latest Video Performance - YT?
Hide Latest Video Performance - YT é uma extensão do Chrome desenvolvida por taranasus, e sua principal característica é "Hides the "Latest video performance" widget within the YouTube Studio dashboard.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide Latest Video Performance - YT
Baixe arquivos de extensão Hide Latest Video Performance - YT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Hide Latest Video Performance - YT |
ID | gebhkpihpgicbbclaldmmkpnccbnfhfe |
URL Oficial | https://chromewebstore.google.com/detail/hide-latest-video-perform/gebhkpihpgicbbclaldmmkpnccbnfhfe |
Descrição | Hides the "Latest video performance" widget within the YouTube Studio dashboard. |
Tamanho do Arquivo | 12.36 KB |
Contagem de Instalações | 10,127 |
Versão Atual | 1.0 |
Última Atualização | 2022-07-24 |
Data de Publicação | 2022-07-20 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | taranasus |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.youtube.com/watch?v=59Jkn1YSMFw |
URL da Página de Ajuda | https://github.com/taranasus/HideLatestVideoPerformance |
Idiomas Suportados | 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" ] } ] } |