YouTubeHover
A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
O que é YouTubeHover?
YouTubeHover é uma extensão do Chrome desenvolvida por Sukrit Chhabra, e sua principal característica é "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTubeHover
Baixe arquivos de extensão YouTubeHover 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
You can preview videos by hovering on their thumbnails. You can choose the settings that work best for you from the options page. Note: The extension does not collect any user data (browsing or otherwise) from youtube.com. Please be sure to leave a review or any feedback you have :)
Informações Básicas da Extensão
Nome | |
ID | ojbkdiobfdncjfbcmolchhkmcnmhobog |
URL Oficial | https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog |
Descrição | A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube. |
Tamanho do Arquivo | 8.63 MB |
Contagem de Instalações | 479 |
Versão Atual | 0.1.12 |
Última Atualização | 2018-02-27 |
Data de Publicação | 2018-02-27 |
Classificação | 3.91/5 Total de 23 Avaliações |
Desenvolvedor | Sukrit Chhabra |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sukritchhabra/YouTubeHover |
URL da Página de Ajuda | https://github.com/sukritchhabra/YouTubeHover/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubeHover", "description": "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.", "version": "0.1.12", "author": "Sukrit Chhabra", "browser_action": { "default_icon": "imgs\/touch\/icon_96.png", "default_title": "YouTubeHover" }, "options_ui": { "page": "options\/options.html", "chrome_style": true, "open_in_tab": true }, "permissions": [ "storage", "notifications" ], "background": { "scripts": [ "analytics.js", "background.js" ] }, "content_scripts": [ { "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "iframe_api.js", "widgetAPI.js", "options\/defaultSettings.js", "content.js", "controllers\/controllers.min.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/s.ytimg.com\/; object-src 'self'" } |