Inspector

Inspector helps verify the reliability of news sources while surfing the internet.

Qu'est-ce que Inspector ?

Inspector est une extension Chrome développée par Unknown, et sa fonction principale est "Inspector helps verify the reliability of news sources while surfing the internet.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Inspector

Téléchargez les fichiers d'extension Inspector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Stay informed while browsing the web! Inspector helps identify suspicious webpages and articles using machine learning and a professionally pre-compiled list of known sources that are labeled as the following:

Trusted
Fake
Satire
Biased
Conspiracy
Junk Science
Hate
Clickbait

After clicking on the Inspector lock, the extension will process the article webpage and check to see if the link is on our compiled list of sources. If it is, then a new window will appear revealing the which class the webpage falls under. If not found, then Inspector will use a machine learning model to present a score from 0-1 for how trusted the article text is, and will present supplementary articles that may relate to the news article in question for you to reference.

*Disclaimer*
Please note that this extension is meant to be used as a guideline! At the end of the day it is up to your judgement to decide whether a news sources is trustworthy or not. 

Our pre-compiled list of known sources is mainly powered by OpenSources, a curated publicly available resource for assessing online information.                    

Informations de Base sur l'Extension

Nom Inspector Inspector
ID afklhonboackbalcnafmeblgfgmnoimk
URL Officiel https://chromewebstore.google.com/detail/inspector/afklhonboackbalcnafmeblgfgmnoimk
Description Inspector helps verify the reliability of news sources while surfing the internet.
Taille du Fichier 697 KB
Nombre d'Installations 50
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-05-08
Date de Publication 2020-05-05
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://callaunchpad.github.io/Inspector/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inspector",
    "version": "1.0.0",
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/us-central1-inspector-project.cloudfunctions.net\/handler"
    ],
    "description": "Inspector helps verify the reliability of news sources while surfing the internet.",
    "icons": {
        "19": ".\/icons\/Inspector_icon19.png",
        "48": ".\/icons\/Inspector_icon48.png",
        "128": ".\/icons\/Inspector_icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/dist\/background.bundle.js"
        ]
    },
    "browser_action": {
        "default_icon": ".\/icons\/Inspector_icon19.png"
    }
}