CrowdWise

CrowdWise shows you discussions (from HN/Reddit) about the page you're browsing. What do other people think?

CrowdWiseคืออะไร?

CrowdWise เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://usecrowdwise.com และคุณลักษณะหลักของมันคือ "CrowdWise shows you discussions (from HN/Reddit) about the page you're browsing. What do other people think?"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย CrowdWise ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        CrowdWise adds to your browsing experience by showing you relevant discussions about your current web page on Hacker News and Reddit.

Features:
Discussions on Hacker News and Reddit
When you navigate to a web page, CrowdWise pulls relevant discussions about this web page from Hacker News and Reddit. You can click on these discussions and it will open in a new tab, where you can find counter-opinions and different perspectives.

Incognito Mode
By default, CrowdWise searches for relevant discussions in the background. For additional privacy, CrowdWise also includes an Incognito mode where it will only search for discussions when you click on the CrowdWise button.

Personalised Settings
Adjust the sidebar to suit the look and feel that you like. You can customise the following:
- Keyboard shortcuts to open and close the sidebar
- Font sizes
- Sidebar width
- and more

Open Source and Extensible
Our source code is available on GitHub on a MIT license, allowing you to easily extend CrowdWise the way you want and be part of our community!
GitHub link: https://github.com/UseCrowdWise/crowdwise

Experience CrowdWise today!

Changelog
Version 0.1.2 (29 June 2022)
1. Extension Button on the page is now draggable - Position exactly where you want!
2. Result counts appear in the Extension Toolbar and the Sidebar can be triggered by clicking on the icon
3. Fixes - Reddit and HN comment counts are now accurate
4. Tweaks - Extension Button badge to show red only on Exact URL results, Clamping of comments to 4 lines, Prevent overflowing of text in horizontal direction, Demarcate sections within settings, Renaming to Bionic Reading                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CrowdWise CrowdWise
ID hogoebkpcnajkkjdidfhojkljppfalip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crowdwise/hogoebkpcnajkkjdidfhojkljppfalip
คำอธิบาย CrowdWise shows you discussions (from HN/Reddit) about the page you're browsing. What do other people think?
ขนาดไฟล์ 677 KB
จำนวนการติดตั้ง 145
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2022-09-13
วันที่เผยแพร่ 2022-06-15
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://usecrowdwise.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://usecrowdwise.com
URL หน้าช่วยเหลือ https://github.com/usecrowdwise/crowdwise
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "CrowdWise shows you discussions (from HN\/Reddit) about the page you're browsing. What do other people think?",
    "version": "0.1.3",
    "manifest_version": 3,
    "name": "CrowdWise",
    "permissions": [
        "storage",
        "tabs",
        "alarms",
        "identity",
        "identity.email"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": [],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chrome-extension:\/\/*\/*.bundle.js.map",
                "sidebar.html",
                "content.styles.css",
                "*.png",
                "*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}