Fake News Detector with Pinocchio Alerts

Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know

Fake News Detector with Pinocchio Alerts란 무엇입니까?

Fake News Detector with Pinocchio Alerts은(는) https://pinocchioalerts.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fake News Detector with Pinocchio Alerts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Pinocchio Alerts is an extension that warns you if the website you are reading has been reported as inaccurate (because of fake news related to that website). We think the world gets better when we all avoid spreading alternative facts!

We work with several organizations to help stop the spread of bogus news. There is nothing wrong with questioning what we read. Please do your part by checking sources and helping your friends and family do the same. 

Hope you enjoy!                    

확장 프로그램 기본 정보

이름 Fake News Detector with Pinocchio Alerts Fake News Detector with Pinocchio Alerts
ID opdabcbeebkhbhoppdcmggdoahpjhdii
공식 URL https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii
설명 Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know
파일 크기 83.78 KB
설치 횟수 134
현재 버전 1.1
최근 업데이트 2017-07-28
출시 날짜 2017-07-28
평점 5.00/5 총 1 개의 평점
개발자 https://pinocchioalerts.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pinocchioalerts.com/
개인정보 보호 정책 페이지 URL https://pinocchioalerts.com/pino_privacypolicy.htm
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fake News Detector with Pinocchio Alerts",
    "description": "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know",
    "version": "1.1",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "author": "Diego Alvarez and Andres Vidal",
    "browser_action": {
        "default_icon": "pino_38.png",
        "default_popup": "popup.html",
        "default_title": "Click to check for Pinocchio Alerts!"
    },
    "icons": {
        "128": "pino_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content_validator.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "notifications"
    ]
}