Troogl
Real-time insights into the news you read
O que é Troogl?
Troogl é uma extensão do Chrome desenvolvida por https://troogl.com, e sua principal característica é "Real-time insights into the news you read".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Troogl
Baixe arquivos de extensão Troogl 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
Troogl provides interesting and useful insights into the news articles you read, as you read them. Current features include: - Colour-coded sentences based on sentiment / subjectivity. - Graph of changing sentiment / subjectivity over the course of the article. - Easy article navigation by jumping to points within the graph. - Full dashboard providing a summary and metrics (e.g. read time, keywords, etc.).
Informações Básicas da Extensão
Nome | Troogl |
ID | gjmdfaebiihflpknlgojcaaebnbegeop |
URL Oficial | https://chromewebstore.google.com/detail/troogl/gjmdfaebiihflpknlgojcaaebnbegeop |
Descrição | Real-time insights into the news you read |
Tamanho do Arquivo | 2.05 MB |
Contagem de Instalações | 18 |
Versão Atual | 1.0.1 |
Última Atualização | 2022-01-31 |
Data de Publicação | 2022-01-27 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://troogl.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Troogl", "short_name": "Troogl", "version": "1.0.1", "description": "Real-time insights into the news you read", "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": ".\/assets\/icon-16.png", "32": ".\/assets\/icon-32.png", "48": ".\/assets\/icon-48.png", "128": ".\/assets\/icon-128.png" } } |