Fallacy Review

Automatically highlight logical fallacies on Twitter

Wat is Fallacy Review?

Fallacy Review is een Chrome-extensie ontwikkeld door https://fallacy.review, en de belangrijkste functie is "Automatically highlight logical fallacies on Twitter".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Fallacy Review

Download Fallacy Review-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 ✨                    

Basisinformatie over de Extensie

Naam Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
Officiële URL https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Beschrijving Automatically highlight logical fallacies on Twitter
Bestandsgrootte 32.23 KB
Aantal Installaties 232
Huidige Versie 0.1.3
Laatst Bijgewerkt 2023-04-26
Publicatiedatum 2023-04-25
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://fallacy.review
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://fallacy.review
URL van de Privacybeleid Pagina https://autocomplete.live/privacy
Ondersteunde Talen 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"
    }
}