Smart Youtuber
'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…
O que é Smart Youtuber?
Smart Youtuber é uma extensão do Chrome desenvolvida por Mr Foo, e sua principal característica é "'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Smart Youtuber
Baixe arquivos de extensão Smart Youtuber 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
'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by automatically pausing/playing videos in other tabs based on your current tab activity. The following two-step scenario sums up the application behavior -- Step-1: You are playing some video in tab-1. You now open a new tab-2 and play another video. The application will automatically pause the video in tab-1. Step-2: Next, if you pause the tab-2 video, the application will automatically resume the tab-1 video. This can extend to any number of tabs or windows. NOTE: This works only on www.YouTube.com at present. Videos in embedded mode are not supported.
Informações Básicas da Extensão
Nome | |
ID | inmdnokekflmjbdljfljibopigogoeac |
URL Oficial | https://chrome.google.com/webstore/detail/smart-youtuber/inmdnokekflmjbdljfljibopigogoeac |
Descrição | 'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by… |
Tamanho do Arquivo | 58.92 KB |
Contagem de Instalações | 73 |
Versão Atual | 0.1 |
Última Atualização | 2016-06-07 |
Data de Publicação | 2016-06-07 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Mr Foo |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smart Youtuber", "version": "0.1", "permissions": [ "contentSettings", "tabs" ], "browser_action": { "default_icon": "Smart_Youtuber.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-2.2.4.min.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |