Polygraph

Polygraph analyzes webpages and warns you about dishonest articles.

Qu'est-ce que Polygraph ?

Polygraph est une extension Chrome développée par Andrew Peter Prifer, et sa fonction principale est "Polygraph analyzes webpages and warns you about dishonest articles.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Polygraph 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

                        I made Polygraph to combat clickbait. Many journalists and writers use overly sensationalistic, exaggerating or downright deceitful headlines in order to attract attention. The extension analyzes the title and tells you about all the things that are possibly wrong with the article.

Important! Polygraph is an experiment. As such, it is far from perfect. It is also open source: http://bit.ly/2j4zG6m                    

Informations de Base sur l'Extension

Nom Polygraph Polygraph
ID mbmblpolabjhoedckfbimgbnoogmcooi
URL Officiel https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi
Description Polygraph analyzes webpages and warns you about dishonest articles.
Taille du Fichier 82.61 KB
Nombre d'Installations 34
Version Actuelle 0.1.1
Dernière Mise à Jour 2017-01-17
Date de Publication 2017-01-17
Évaluation 5.00/5 Total 2 Évaluations
Développeur Andrew Peter Prifer
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/andrewpeterprifer/Polygraph
URL de la Page d'Aide https://github.com/andrewpeterprifer/Polygraph/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "0.1.1",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}