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
}