Trusted News

This plugin purpose to analyze news articles.

Trusted News क्या है?

Trusted News trustednews द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin purpose to analyze news articles."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Trusted News एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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",
        ""
    ]
}