Fallacy Review

Automatically highlight logical fallacies on Twitter

What is Fallacy Review?

Fallacy Review is a Chrome extension developed by https://fallacy.review, and its main feature is "Automatically highlight logical fallacies on Twitter".

Extension Screenshots

screenshot
screenshot

Download Fallacy Review Extension CRX File

Download Fallacy Review extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 ✨                    

Extension Basic Information

Name Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
Official URL https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Description Automatically highlight logical fallacies on Twitter
File Size 32.23 KB
Installation Count 232
Current Version 0.1.3
Last Updated 2023-04-26
Publish Date 2023-04-25
Rating 1.00/5 Total 2 Ratings
Developer https://fallacy.review
Email [email protected]
Payment Type free
Extension Website https://fallacy.review
Privacy Policy Page URL https://autocomplete.live/privacy
Supported Languages 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"
    }
}