What's True Online?
Fact-check the Internet
What's True Online?란 무엇입니까?
What's True Online?은(는) https://whatstrue.online에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fact-check the Internet"입니다.
확장 프로그램 스크린샷
What's True Online? 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
See if what you're reading is true! This plugin will check stories in your Facebook feed, and inject [True] for stories that have been fact-checked and found to be true, [Likely True] for sites that demonstrate a clear duty to the truth, [Likely False] for sites that are known to lie, etc. More: https://whatstrue.online/about
확장 프로그램 기본 정보
이름 | What's True Online? |
ID | limdakdhlgbfpefnajkeedhakljnihif |
공식 URL | https://chromewebstore.google.com/detail/whats-true-online/limdakdhlgbfpefnajkeedhakljnihif |
설명 | Fact-check the Internet |
파일 크기 | 42.34 KB |
설치 횟수 | 62 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2017-02-16 |
출시 날짜 | 2017-02-16 |
개발자 | https://whatstrue.online |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "What's True Online?", "description": "Fact-check the Internet", "version": "1.0.4", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/www.facebook.com\/", "https:\/\/whatstrue.online\/url\/check" ], "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "css": [ "facebook.css" ], "js": [ "facebook.js" ] } ], "browser_action": { "default_icon": "buttonword.png", "default_popup": "popup.html" }, "background": { "scripts": [ "whatstrue.js" ], "persistent": false } } |