WHAT - Websites for Health Assessment Tool

This extension assesses trustfulness of medical sources based on users and medical experts votes.

WHAT - Websites for Health Assessment Toolคืออะไร?

WHAT - Websites for Health Assessment Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dokato และคุณลักษณะหลักของมันคือ "This extension assesses trustfulness of medical sources based on users and medical experts votes."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WHAT - Websites for Health Assessment Tool

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

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

                        -----------------

According to the Office National Statistics, 54% of people in the UK are looking for health-related information online. The figures vary worldwide, but in the USA it might be even 80% according to NBC. However, not all medical information sources can be trusted.

Websites for Health Assessment Tool plug-in is here to help you!

This extension allows to assess the credibility of medical information online. It gives the websites scores from 0 to 10 based on averaged responses of medical experts and other Internet users.

The project was created by Health-IT enthusiasts during NHS Hack 2020 in Cardiff and is fully open source.                    

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

ชื่อ WHAT - Websites for Health Assessment Tool WHAT - Websites for Health Assessment Tool
ID maoedkipekbhpphphjmnmoccdgkkahfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/what-websites-for-health/maoedkipekbhpphphjmnmoccdgkkahfn
คำอธิบาย This extension assesses trustfulness of medical sources based on users and medical experts votes.
ขนาดไฟล์ 13.44 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2020-03-30
วันที่เผยแพร่ 2020-03-27
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา dokato
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://dokato.shinyapps.io/WHAT
URL หน้าช่วยเหลือ https://github.com/dokato/healthcareonlinesources/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WHAT - Websites for Health Assessment Tool",
    "short_name": "WHAT",
    "version": "0.0.5",
    "description": "This extension assesses trustfulness of medical sources based on users and medical experts votes.",
    "icons": {
        "64": "images\/icon-def.png",
        "128": "images\/icon-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Start",
        "default_icon": {
            "32": "images\/icon-def.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "notifications"
    ],
    "web_accessible_resources": [
        "data\/info.json"
    ],
    "manifest_version": 2
}