Hide Fake News - Avoid MSM Lies on Twitter
Free tool that hides fake news while you browse Twitter.
What is Hide Fake News - Avoid MSM Lies on Twitter?
Hide Fake News - Avoid MSM Lies on Twitter is a Chrome extension developed by http://ryanckulp.com, and its main feature is "Free tool that hides fake news while you browse Twitter.".
Extension Screenshots
Download Hide Fake News - Avoid MSM Lies on Twitter Extension CRX File
Download Hide Fake News - Avoid MSM Lies on Twitter 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
"Fake News," the most recent hoax from the MSM (mainstream media), has backfired. Independent journalists, free-thinkers, and American citizens everywhere are uncovering the actual* Fake News Networks. This plugin hides fake new (NY Times, CNN, ABC, etc) from your Twitter feed. There's no signup, no email, nothing to download. To get involved, contribute anytime via email ([email protected]), or submit a pull request to the open source code: https://github.com/ryanckulp/hide_fake_news
Extension Basic Information
Name | |
ID | lihcikjmjdlidleajjjkabhmbeghjkda |
Official URL | https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda |
Description | Free tool that hides fake news while you browse Twitter. |
File Size | 42.22 KB |
Installation Count | 11 |
Current Version | 0.2 |
Last Updated | 2016-12-22 |
Publish Date | 2016-12-22 |
Rating | 1.00/5 Total 2 Ratings |
Developer | http://ryanckulp.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ryanckulp/hide_fake_news |
Privacy Policy Page URL | https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Fake News - Avoid MSM Lies on Twitter", "short_name": "Hide Fake News", "description": "Free tool that hides fake news while you browse Twitter.", "browser_action": { "default_icon": "fake_news_128.png" }, "version": "0.2", "icons": { "16": "fake_news_16.png", "48": "fake_news_48.png", "128": "fake_news_128.png" }, "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "jquery.min.js", "icon.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.twitter.com\/*", "https:\/\/*.twitter.com\/*" ], "js": [ "jquery.min.js", "sources.js", "content.js" ] } ] } |