Troogl
Real-time insights into the news you read
What is Troogl?
Troogl is a Chrome extension developed by https://troogl.com, and its main feature is "Real-time insights into the news you read".
Extension Screenshots
Download Troogl Extension CRX File
Download Troogl extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.).
Extension Basic Information
Name | Troogl |
ID | gjmdfaebiihflpknlgojcaaebnbegeop |
Official URL | https://chromewebstore.google.com/detail/troogl/gjmdfaebiihflpknlgojcaaebnbegeop |
Description | Real-time insights into the news you read |
File Size | 2.05 MB |
Installation Count | 18 |
Current Version | 1.0.1 |
Last Updated | 2022-01-31 |
Publish Date | 2022-01-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://troogl.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |