Polygraph

Polygraph analyzes webpages and warns you about dishonest articles.

Hvad er Polygraph?

Polygraph er en Chrome-udvidelse udviklet af Andrew Peter Prifer, og dens hovedfunktion er "Polygraph analyzes webpages and warns you about dishonest articles.".

Udvidelsesskærmbilleder

screenshot

Download Polygraph-udvidelses-CRX-fil

Download Polygraph-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Polygraph Polygraph
ID mbmblpolabjhoedckfbimgbnoogmcooi
Officiel URL https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi
Beskrivelse Polygraph analyzes webpages and warns you about dishonest articles.
Filstørrelse 82.61 KB
Antal Installationer 34
Nuværende Version 0.1.1
Senest Opdateret 2017-01-17
Udgivelsesdato 2017-01-17
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Andrew Peter Prifer
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/andrewpeterprifer/Polygraph
Hjælpeside-URL https://github.com/andrewpeterprifer/Polygraph/issues
Understøttede Sprog 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
        }
    ]
}