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"
    }
}