What's True Online?
Fact-check the Internet
What is What's True Online??
What's True Online? is a Chrome extension developed by https://whatstrue.online, and its main feature is "Fact-check the Internet".
Extension Screenshots
Download What's True Online? Extension CRX File
Download What's True Online? extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | What's True Online? |
ID | limdakdhlgbfpefnajkeedhakljnihif |
Official URL | https://chromewebstore.google.com/detail/whats-true-online/limdakdhlgbfpefnajkeedhakljnihif |
Description | Fact-check the Internet |
File Size | 42.34 KB |
Installation Count | 62 |
Current Version | 1.0.4 |
Last Updated | 2017-02-16 |
Publish Date | 2017-02-16 |
Developer | https://whatstrue.online |
Payment Type | free |
Supported Languages | 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 } } |