Troogl

Real-time insights into the news you read

Qu'est-ce que Troogl ?

Troogl est une extension Chrome développée par https://troogl.com, et sa fonction principale est "Real-time insights into the news you read".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Troogl

Téléchargez les fichiers d'extension Troogl au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.).                    

Informations de Base sur l'Extension

Nom Troogl Troogl
ID gjmdfaebiihflpknlgojcaaebnbegeop
URL Officiel https://chromewebstore.google.com/detail/troogl/gjmdfaebiihflpknlgojcaaebnbegeop
Description Real-time insights into the news you read
Taille du Fichier 2.05 MB
Nombre d'Installations 18
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-01-31
Date de Publication 2022-01-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://troogl.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}