Trustium

Trustium analyzes the text of online news articles you read and determines credibility.

Trustiumคืออะไร?

Trustium เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://trustium.com และคุณลักษณะหลักของมันคือ "Trustium analyzes the text of online news articles you read and determines credibility."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trustium

ดาวน์โหลดไฟล์ส่วนขยาย Trustium ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Now you can register on www.trustium.com and use that account to get credit for your feedback!  
 
The Trustium (Beta) is now available - try it out and let us know what you think!  This extension reads the news pages you view, so it does require access to the web page (Installing will ask you for this permission)

Trustium blends advanced machine learning models with a human rating system to identify and distinguish sound journalism from opinion, satire and content masquerading as quality news.  

We know understanding the credibility of news is confusing. Trustium's at-a-glance simple red, orange and green icons directly on the browser extension allow you to immediately understand the type of news you are consuming. 

Each news article you read is analyzed by Trustium's algorithms, which compare it to other articles while looking for signs of bias, clickbait and other forms of misinformation. 

We make the algorithms’ work transparent.  If you want to know more about the article's rating or the source of the article, it’s just a click away in our in depth "Details" page.

Plus, you can provide feedback on any rating and even offer an alternative rating, which can help improve future ratings.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Trustium Trustium
ID fkcccoomlgbfmhcgcepbdfjmofckejgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trustium/fkcccoomlgbfmhcgcepbdfjmofckejgo
คำอธิบาย Trustium analyzes the text of online news articles you read and determines credibility.
ขนาดไฟล์ 164 KB
จำนวนการติดตั้ง 61
เวอร์ชันปัจจุบัน 2.54
อัปเดตครั้งล่าสุด 2020-03-27
วันที่เผยแพร่ 2020-03-24
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://trustium.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.trustium.com
URL หน้าช่วยเหลือ https://www.trustium.online/index.php/trustie-categories/
URL หน้านโยบายความเป็นส่วนตัว http://www.trustium.com/index.php/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trustium",
    "short_name": "Trustium",
    "version": "2.54",
    "id": "Trustium-sdf23-asdf-1234-asdc",
    "description": "Trustium analyzes the text of online news articles you read and determines credibility.",
    "permissions": [
        "webNavigation",
        "activeTab",
        "storage",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "getColor.js",
            "background.js",
            "blocked.js"
        ],
        "persistent": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "run_at": "document_idle",
            "exclude_matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "getColor.js",
                "clean.js",
                "cache.js",
                "blocked.js",
                "feedback.js",
                "getPagesSource.js"
            ],
            "css": [
                "page_styles.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": "images\/trustie_icon-128.png",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "icons": {
        "16": "images\/trustie_icon-16.png",
        "32": "images\/trustie_icon-32.png",
        "48": "images\/trustie_icon-48.png",
        "128": "images\/trustie_icon-128.png"
    },
    "manifest_version": 2
}