Fallacy Review

Automatically highlight logical fallacies on Twitter

Was ist Fallacy Review?

Fallacy Review ist eine Chrome-Erweiterung, die von https://fallacy.review entwickelt wurde, und ihr Hauptmerkmal ist "Automatically highlight logical fallacies on Twitter".

Erweiterungsscreenshots

screenshot
screenshot

Fallacy Review-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fallacy Review-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Misinformation is hard to determine. Poor reasoning is very easy to detect.

Imagine if you could have a smart assistant read your Twitter feed with you, and instantly point out flawed reasoning that people might have. That is what fallacy.review is. 

Just Turn it on as soon as you download it, and it will start working its magic ✨                    

Grundlegende Informationen zur Erweiterung

Name Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
Offizielle URL https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Beschreibung Automatically highlight logical fallacies on Twitter
Dateigröße 32.23 KB
Installationsanzahl 232
Aktuelle Version 0.1.3
Letztes Update 2023-04-26
Veröffentlichungsdatum 2023-04-25
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler https://fallacy.review
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://fallacy.review
URL der Datenschutzrichtlinien-Seite https://autocomplete.live/privacy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fallacy Review",
    "version": "0.1.3",
    "description": "Automatically highlight logical fallacies on Twitter",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "scripts.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "assets\/16x16px.png",
        "48": "assets\/48x48px.png",
        "128": "assets\/128x128px.png"
    },
    "action": {
        "default_icon": "\/assets\/48x48px.png",
        "default_popup": "popup.html",
        "default_title": "Toggle My Extension"
    }
}