Trustnet
Allows you to assess different articles as (in)accurate to help your friends and to also see the assessments that they provide.
什麼是Trustnet?
Trustnet是由Farnaz Jahanbakhsh開發的Chrome擴展程式,該擴展的主要功能是“Allows you to assess different articles as (in)accurate to help your friends and to also see the assessments that they provide.”。
擴展截圖
下載Trustnet擴展crx文件
下載Trustnet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a browser extension as part of a research project that allows you to assess different articles as accurate or inaccurate. Your assessments can help benefit those users who follow or trust you on https://trustnet.csail.mit.edu. You too can benefit from the assessments provided by your sources, since their assessments of any webpage you visit will be loaded on the page. In addition to providing accuracy assessments, you can also inquire about the accuracy of an article. Your inquiries can be anonymous or tied to your name and by default, will surface to those you have marked as trustworthy on Trustnet. Alternatively, you can specify who you would like to ask about the accuracy of the article. They will receive an email about your inquiry and can provide an answer to you.
擴展基本資訊
名稱 | |
ID | nphapibbiamgbhamgmfgdeiiekddoejo |
官方網址 | https://chromewebstore.google.com/detail/trustnet/nphapibbiamgbhamgmfgdeiiekddoejo |
簡介 | Allows you to assess different articles as (in)accurate to help your friends and to also see the assessments that they provide. |
檔案大小 | 3.85 MB |
安裝次數 | 20 |
目前版本 | 0.1.21 |
更新時間 | 2023-04-08 |
上架時間 | 2022-10-27 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Farnaz Jahanbakhsh |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://trustnet.csail.mit.edu/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.21", "name": "Trustnet", "homepage_url": "https:\/\/github.com\/farnazj\/Replace-Previews\/tree\/add-assessments", "description": "Allows you to assess different articles as (in)accurate to help your friends and to also see the assessments that they provide.", "default_locale": "en", "permissions": [], "icons": { "16": "icons\/trustnet_48.png", "48": "icons\/trustnet_100.png", "128": "icons\/trustnet_128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_globs": [ "http:\/\/trustnet.csail.mit.edu\/*", "https:\/\/trustnet.csail.mit.edu\/*", "http:\/\/reheadline.csail.mit.edu\/*", "https:\/\/reheadline.csail.mit.edu\/*" ], "js": [ "js\/content-script.js" ], "css": [ "css\/main.css" ] } ], "browser_action": { "default_title": "Trustnet", "default_icon": { "19": "icons\/trustnet_67.png", "38": "icons\/trustnet_80.png" } }, "options_ui": { "page": "options.html", "browser_style": true }, "content_security_policy": "script-src 'self' ; object-src 'self'" } |