Twitter Fact Check
This extension fact-checks your friends' tweets with a variety of news sources
What is Twitter Fact Check?
Twitter Fact Check is a Chrome extension developed by Unknown, and its main feature is "This extension fact-checks your friends' tweets with a variety of news sources".
Extension Screenshots
Download Twitter Fact Check Extension CRX File
Download Twitter Fact Check 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
This extension identifies political tweets and creates a dropdown list filled with relevant articles from the guardian. Extension also includes a search functionality to get new results.
Extension Basic Information
Name | Twitter Fact Check |
ID | knkgedhglgpdamdklbgoknjhmappdaoo |
Official URL | https://chromewebstore.google.com/detail/twitter-fact-check/knkgedhglgpdamdklbgoknjhmappdaoo |
Description | This extension fact-checks your friends' tweets with a variety of news sources |
File Size | 667 KB |
Installation Count | 23 |
Current Version | 1.0 |
Last Updated | 2017-05-01 |
Publish Date | 2017-05-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "reload.js" ] }, "name": "Twitter Fact Check", "version": "1.0", "manifest_version": 2, "description": "This extension fact-checks your friends' tweets with a variety of news sources", "permissions": [ "webRequest", "tabs", "*:\/\/*.twitter.com\/*", "file:\/\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "response.js" ], "all_frames": true } ], "web_accessible_resources": [ "font-awesome-4.7.0\/css\/font-awesome.min.css", "*.ttf", "*.woff", "*.woff2", "*.png" ] } |