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 |
Eメール | [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" } } |