Fallacy Review
Automatically highlight logical fallacies on Twitter
什么是Fallacy Review?
Fallacy Review是由https://fallacy.review开发的Chrome扩展程序,该扩展的主要功能是“Automatically highlight logical fallacies on Twitter”。
扩展截图
下载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 |
ID | apjhfnampcpdkbegbmeadgcadnipdkin |
官方URL | 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" } } |