Troogl

Real-time insights into the news you read

Troogl란 무엇입니까?

Troogl은(는) https://troogl.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Real-time insights into the news you read"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Troogl 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}