Reddit Insights
This plugin gives you unique insights about behavior and preferences of other Redditors
Reddit Insightsとは何ですか?
Reddit Insightsはredditinsightsdevによって開発されたChromeの拡張機能で、その主な機能は「This plugin gives you unique insights about behavior and preferences of other Redditors」です。
拡張機能のスクリーンショット
Reddit Insights拡張機能のCRXファイルをダウンロード
Reddit Insights拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Introducing Reddit Insights, a browser extension that enhances your Reddit experience. With this extension, you can easily access the online behavior of any Reddit user you encounter. The extension automatically scans all their past comments & submissions and calculates the top five subreddits they visit based on engagement. All submissions and comments are also sent to Perspective API for analysis, providing valuable insights into users' toxicity and incivility levels. These scores are displayed only if they exceed a threshold of 75%. The development of Reddit Insights is based on the scientific principle that enhancing the humanization of others leads to more productive and positive online discussions. The extension is open source and also available on GitHub.
拡張機能の基本情報
名前 | Reddit Insights |
ID | oehlhkdmigpcpcjkpfklbmnppiddhgfi |
公式URL | https://chromewebstore.google.com/detail/reddit-insights/oehlhkdmigpcpcjkpfklbmnppiddhgfi |
説明 | This plugin gives you unique insights about behavior and preferences of other Redditors |
ファイルサイズ | 105 KB |
インストール数 | 265 |
現在のバージョン | 1.1 |
最終更新日 | 2023-04-12 |
公開日 | 2022-12-30 |
評価 | 4.25/5 合計 16 レビュー |
開発者 | redditinsightsdev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/thafran/reddit-insights |
ヘルプページのURL | https://github.com/thafran/reddit-insights |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Insights", "description": "This plugin gives you unique insights about behavior and preferences of other Redditors", "version": "1.1", "author": "Simon H\u00f6ferlin (https:\/\/github.com\/shoeferlin), Franz Waltenberger", "manifest_version": 3, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_title": "Dysis", "default_icon": "icon.png" }, "permissions": [ "storage", "alarms", "tabs", "idle" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.reddit.com\/*" ], "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] } |