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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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'" } |