Trusted News

This plugin purpose to analyze news articles.

Trusted News란 무엇입니까?

Trusted News은(는) trustednews에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin purpose to analyze news articles."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Trusted News uses AI to assist newsreaders in evaluating the quality of the online content they read.

In its first release, it scores the objectivity for a selected article, testing whether it is written from a neutral perspective as opposed to a personal one. For example, phrases like "in my opinion" or "I think" are used by authors to reflect their individual thoughts, beliefs, and attitudes. This model has been developed based on scientific research. For more information, please check the attached link.

- Today this plugin works best on analyzing news articles, or what we call long-form articles.

- For now, it does not work on social media pages, tweets, or profile pages.

- It works best when you are on a tab with a specific piece of content, which doesn’t require infinite scrolling, e.g. the text is neither too short nor too long.

Research paper: https://www.researchgate.net/publication/327385803_Information_Nutrition_Labels_A_Plugin_for_Online_News_Evaluation                    

확장 프로그램 기본 정보

이름 Trusted News Trusted News
ID nkkghpncidknplmlkgemdoekpckjmlok
공식 URL https://chromewebstore.google.com/detail/trusted-news/nkkghpncidknplmlkgemdoekpckjmlok
설명 This plugin purpose to analyze news articles.
파일 크기 3.02 MB
설치 횟수 1,245
현재 버전 1.1.2
최근 업데이트 2021-05-25
출시 날짜 2020-05-25
평점 3.13/5 총 8 개의 평점
개발자 trustednews
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://trusted-news.com/
도움말 페이지 URL https://trusted-news.com/
개인정보 보호 정책 페이지 URL https://trusted-news.com/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2,
    "name": "Trusted News",
    "version": "1.1.2",
    "description": "This plugin purpose to analyze news articles.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon48.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "author": "Trusted News",
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "popup.html",
        "default_title": "Trusted News Local"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/libs\/jquery-3.3.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.3.1.min.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "background",
        "tabs",
        "storage",
        "activeTab",
        ""
    ]
}