Fallacy Review

Automatically highlight logical fallacies on Twitter

Co je Fallacy Review?

Fallacy Review je rozšíření Chrome vyvinuté https://fallacy.review, a jeho hlavní funkcí je „Automatically highlight logical fallacies on Twitter“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Fallacy Review

Stáhněte si soubory rozšíření Fallacy Review ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 ✨                    

Základní Informace o Rozšíření

Název Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
Oficiální URL https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Popis Automatically highlight logical fallacies on Twitter
Velikost souboru 32.23 KB
Počet instalací 232
Aktuální Verze 0.1.3
Poslední Aktualizace 2023-04-26
Datum Vydání 2023-04-25
Hodnocení 1.00/5 Celkem 2 Hodnocení
Vývojář https://fallacy.review
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://fallacy.review
URL Stránky Zásad Ochrany Soukromí https://autocomplete.live/privacy
Podporované Jazyky 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"
    }
}