Reddit Insights
This plugin gives you unique insights about behavior and preferences of other Redditors
¿Qué es Reddit Insights?
Reddit Insights es una extensión de Chrome desarrollada por redditinsightsdev, y su función principal es "This plugin gives you unique insights about behavior and preferences of other Redditors".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Reddit Insights
Descarga archivos de extensión Reddit Insights en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Reddit Insights |
ID | oehlhkdmigpcpcjkpfklbmnppiddhgfi |
URL Oficial | https://chromewebstore.google.com/detail/reddit-insights/oehlhkdmigpcpcjkpfklbmnppiddhgfi |
Descripción | This plugin gives you unique insights about behavior and preferences of other Redditors |
Tamaño del Archivo | 105 KB |
Cantidad de Instalaciones | 265 |
Versión Actual | 1.1 |
Última Actualización | 2023-04-12 |
Fecha de Publicación | 2022-12-30 |
Calificación | 4.25/5 Total de 16 Calificaciones |
Desarrollador | redditinsightsdev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/thafran/reddit-insights |
URL de la Página de Ayuda | https://github.com/thafran/reddit-insights |
Idiomas Soportados | 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" ] } ] } |