Troogl

Real-time insights into the news you read

Trooglคืออะไร?

Troogl เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://troogl.com และคุณลักษณะหลักของมันคือ "Real-time insights into the news you read"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Troogl

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}