Troogl
Real-time insights into the news you read
Was ist Troogl?
Troogl ist eine Chrome-Erweiterung, die von https://troogl.com entwickelt wurde, und ihr Hauptmerkmal ist "Real-time insights into the news you read".
Erweiterungsscreenshots
Troogl-Erweiterungs-CRX-Datei herunterladen
Laden Sie Troogl-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.).
Grundlegende Informationen zur Erweiterung
Name | Troogl |
ID | gjmdfaebiihflpknlgojcaaebnbegeop |
Offizielle URL | https://chromewebstore.google.com/detail/troogl/gjmdfaebiihflpknlgojcaaebnbegeop |
Beschreibung | Real-time insights into the news you read |
Dateigröße | 2.05 MB |
Installationsanzahl | 18 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2022-01-31 |
Veröffentlichungsdatum | 2022-01-27 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://troogl.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |