Troogl
Real-time insights into the news you read
什么是Troogl?
Troogl是由https://troogl.com开发的Chrome扩展程序,该扩展的主要功能是“Real-time insights into the news you read”。
扩展截图
下载Troogl扩展crx文件
下载Troogl扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.).
扩展基本信息
名称 | Troogl |
ID | gjmdfaebiihflpknlgojcaaebnbegeop |
官方URL | https://chromewebstore.google.com/detail/troogl/gjmdfaebiihflpknlgojcaaebnbegeop |
简介 | Real-time insights into the news you read |
文件大小 | 2.05 MB |
安装次数 | 18 |
当前版本 | 1.0.1 |
更新时间 | 2022-01-31 |
上架时间 | 2022-01-27 |
评分 | 5.00/5 共1次评分 |
开发者 | https://troogl.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |