Fallacy Review

Automatically highlight logical fallacies on Twitter

Cos'è Fallacy Review?

Fallacy Review è un'estensione di Chrome sviluppata da https://fallacy.review, e la sua funzione principale è "Automatically highlight logical fallacies on Twitter".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Fallacy Review

Scarica i file di estensione Fallacy Review in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 ✨                    

Informazioni di Base sull'Estensione

Nome Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
URL Ufficiale https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Descrizione Automatically highlight logical fallacies on Twitter
Dimensione del File 32.23 KB
Conteggio Installazioni 232
Versione Corrente 0.1.3
Ultimo Aggiornamento 2023-04-26
Data di Pubblicazione 2023-04-25
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore https://fallacy.review
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://fallacy.review
URL della Pagina della Politica sulla Privacy https://autocomplete.live/privacy
Lingue Supportate 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"
    }
}