Fallacy Review

Automatically highlight logical fallacies on Twitter

什麼是Fallacy Review?

Fallacy Review是由https://fallacy.review開發的Chrome擴展程式,該擴展的主要功能是“Automatically highlight logical fallacies on Twitter”。

擴展截圖

screenshot
screenshot

下載Fallacy Review擴展crx文件

下載Fallacy Review擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 ✨                    

擴展基本資訊

名稱 Fallacy Review Fallacy Review
ID apjhfnampcpdkbegbmeadgcadnipdkin
官方網址 https://chromewebstore.google.com/detail/fallacy-review/apjhfnampcpdkbegbmeadgcadnipdkin
簡介 Automatically highlight logical fallacies on Twitter
檔案大小 32.23 KB
安裝次數 232
目前版本 0.1.3
更新時間 2023-04-26
上架時間 2023-04-25
評分 1.00/5 共 2 次評分
開發者 https://fallacy.review
電子郵箱 [email protected]
付費類型 free
擴展官網 https://fallacy.review
隱私政策頁面URL https://autocomplete.live/privacy
支援的語言 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"
    }
}