Troogl
Real-time insights into the news you read
ما هو Troogl؟
Troogl هو إضافة Chrome تم تطويرها بواسطة https://troogl.com، والميزة الرئيسية لها هي "Real-time insights into the news you read".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Troogl
قم بتنزيل ملفات الامتداد Troogl بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |