Comment Overlay
Read comments and watch Youtube videos at the same time.
O que é Comment Overlay?
Comment Overlay é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Read comments and watch Youtube videos at the same time.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Comment Overlay
Baixe arquivos de extensão Comment Overlay 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
Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button. Version 1.2 - Dark Mode added. Version 1.1: - Theater mode is now supported. Version 1.0: - Original release.
Informações Básicas da Extensão
Nome | Comment Overlay |
ID | mjkhjmibjakfenpldlgjogpiebkjliec |
URL Oficial | https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec |
Descrição | Read comments and watch Youtube videos at the same time. |
Tamanho do Arquivo | 53.86 KB |
Contagem de Instalações | 251 |
Versão Atual | 1.2 |
Última Atualização | 2018-11-21 |
Data de Publicação | 2018-11-20 |
Classificação | 3.83/5 Total de 6 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comment Overlay", "version": "1.2", "web_accessible_resources": [ "mypage.htm" ], "description": "Read comments and watch Youtube videos at the same time.", "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "https:\/\/www.youtube.com\/watch*?v=*", "https:\/\/www.youtube.com\/" ], "js": [ "jquery-3.3.1.min.js", "content.js", "popup.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/" ] } ], "browser_action": { "default_title": "Comment Overlay", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2 } |