Fallacy Review

Automatically highlight logical fallacies on Twitter

Vad är Fallacy Review?

Fallacy Review är en Chrome-tillägg utvecklad av https://fallacy.review, och dess huvudfunktion är "Automatically highlight logical fallacies on Twitter".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Fallacy Review-förlängningens CRX-fil

Ladda ner Fallacy Review-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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 ✨                    

Grundläggande Information om Tillägg

Namn Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
Officiell webbadress https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
Beskrivning Automatically highlight logical fallacies on Twitter
Filstorlek 32.23 KB
Antal Installationer 232
Aktuell Version 0.1.3
Senast Uppdaterad 2023-04-26
Publiceringsdatum 2023-04-25
Betyg 1.00/5 Totalt 2 Betyg
Utvecklare https://fallacy.review
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fallacy.review
URL till Sekretesspolicy Sidan https://autocomplete.live/privacy
Stödda Språk 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"
    }
}