YouTube++
This extension shows the publishing or uploading date of related youtube videos in sidebar.
O que é YouTube++?
YouTube++ é uma extensão do Chrome desenvolvida por divyum, e sua principal característica é "This extension shows the publishing or uploading date of related youtube videos in sidebar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube++
Baixe arquivos de extensão YouTube++ 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
Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.
Informações Básicas da Extensão
Nome | YouTube++ |
ID | mbaflkdlneldejanggphlhcepncjfaco |
URL Oficial | https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco |
Descrição | This extension shows the publishing or uploading date of related youtube videos in sidebar. |
Tamanho do Arquivo | 229 KB |
Contagem de Instalações | 2,716 |
Versão Atual | 2.3.2 |
Última Atualização | 2019-11-12 |
Data de Publicação | 2019-11-11 |
Classificação | 3.77/5 Total de 52 Avaliações |
Desenvolvedor | divyum |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube++", "short_name": "YTD", "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.", "version": "2.3.2", "icons": { "48": "image\/icon48.png", "128": "image\/icon128.png" }, "permissions": [ "tabs" ], "background": { "persistent": true, "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "image\/loader_gif.gif" ] } |