Reddit Insights

This plugin gives you unique insights about behavior and preferences of other Redditors

Reddit Insightsคืออะไร?

Reddit Insights เป็นส่วนขยายของ Chrome ที่พัฒนาโดย redditinsightsdev และคุณลักษณะหลักของมันคือ "This plugin gives you unique insights about behavior and preferences of other Redditors"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Insights

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}