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”。

擴展截圖

screenshot

下載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 Reddit Insights
ID oehlhkdmigpcpcjkpfklbmnppiddhgfi
官方網址 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"
            ]
        }
    ]
}