Troogl
Real-time insights into the news you read
Hvad er Troogl?
Troogl er en Chrome-udvidelse udviklet af https://troogl.com, og dens hovedfunktion er "Real-time insights into the news you read".
Udvidelsesskærmbilleder
Download Troogl-udvidelses-CRX-fil
Download Troogl-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.).
Grundlæggende oplysninger om udvidelsen
Navn | Troogl |
ID | gjmdfaebiihflpknlgojcaaebnbegeop |
Officiel URL | https://chromewebstore.google.com/detail/troogl/gjmdfaebiihflpknlgojcaaebnbegeop |
Beskrivelse | Real-time insights into the news you read |
Filstørrelse | 2.05 MB |
Antal Installationer | 18 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2022-01-31 |
Udgivelsesdato | 2022-01-27 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://troogl.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |