Fallacy Review

Automatically highlight logical fallacies on Twitter

Qu'est-ce que Fallacy Review ?

Fallacy Review est une extension Chrome développée par https://fallacy.review, et sa fonction principale est "Automatically highlight logical fallacies on Twitter".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Fallacy Review

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

                        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 ✨                    

Informations de Base sur l'Extension

Nom Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
URL Officiel https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Description Automatically highlight logical fallacies on Twitter
Taille du Fichier 32.23 KB
Nombre d'Installations 232
Version Actuelle 0.1.3
Dernière Mise à Jour 2023-04-26
Date de Publication 2023-04-25
Évaluation 1.00/5 Total 2 Évaluations
Développeur https://fallacy.review
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://fallacy.review
URL de la Page de Politique de Confidentialité https://autocomplete.live/privacy
Langues Prises en Charge 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"
    }
}