Inspector

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

Inspector란 무엇입니까?

Inspector은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inspector helps verify the reliability of news sources while surfing the internet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Inspector Inspector
ID afklhonboackbalcnafmeblgfgmnoimk
공식 URL https://chromewebstore.google.com/detail/inspector/afklhonboackbalcnafmeblgfgmnoimk
설명 Inspector helps verify the reliability of news sources while surfing the internet.
파일 크기 697 KB
설치 횟수 50
현재 버전 1.0.0
최근 업데이트 2020-05-08
출시 날짜 2020-05-05
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://callaunchpad.github.io/Inspector/
지원되는 언어 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"
    }
}