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 |
官方網址 | 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" } } |