Reddit Insights
This plugin gives you unique insights about behavior and preferences of other Redditors
Reddit Insights क्या है?
Reddit Insights redditinsightsdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin gives you unique insights about behavior and preferences of other Redditors"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Insights एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } ] } |