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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}