ComOn com!
Show coms in YouTube videos in realtime by retrieving timestamps
O que é ComOn com!?
ComOn com! é uma extensão do Chrome desenvolvida por https://slals.io, e sua principal característica é "Show coms in YouTube videos in realtime by retrieving timestamps".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ComOn com!
Baixe arquivos de extensão ComOn com! 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
Show YouTube comments in the video while watching. It's a prototype, feel free to bring some ideas for this project here : https://github.com/Slaals/comoncom How to : - Install it, - Watch You Tube videos, - Enjoy Issue / Todo : - Doesn't work in full screen, - Doesn't have any waiting list, it only shows the first comments it found, - Only get 100 comments (API limitation).
Informações Básicas da Extensão
Nome | ComOn com! |
ID | nfmkbcjacdnbdnedcbnmecdcedoijpna |
URL Oficial | https://chromewebstore.google.com/detail/comon-com/nfmkbcjacdnbdnedcbnmecdcedoijpna |
Descrição | Show coms in YouTube videos in realtime by retrieving timestamps |
Tamanho do Arquivo | 32.63 KB |
Contagem de Instalações | 46 |
Versão Atual | 1.3.3 |
Última Atualização | 2017-02-07 |
Data de Publicação | 2017-02-07 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | https://slals.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.youtube.com/watch?v=S_P2noWHyzo |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ComOn com!", "description": "Show coms in YouTube videos in realtime by retrieving timestamps", "version": "1.3.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "comon_on.png", "default_title": "Comon" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "https:\/\/www.youtube.com\/watch*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "com.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ] } |