Hide Fake News - Avoid MSM Lies on Twitter
Free tool that hides fake news while you browse Twitter.
什么是Hide Fake News - Avoid MSM Lies on Twitter?
Hide Fake News - Avoid MSM Lies on Twitter是由http://ryanckulp.com开发的Chrome扩展程序,该扩展的主要功能是“Free tool that hides fake news while you browse Twitter.”。
扩展截图
下载Hide Fake News - Avoid MSM Lies on Twitter扩展crx文件
下载Hide Fake News - Avoid MSM Lies on Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
"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
扩展基本信息
名称 | |
ID | lihcikjmjdlidleajjjkabhmbeghjkda |
官方URL | https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda |
简介 | Free tool that hides fake news while you browse Twitter. |
文件大小 | 42.22 KB |
安装次数 | 11 |
当前版本 | 0.2 |
更新时间 | 2016-12-22 |
上架时间 | 2016-12-22 |
评分 | 1.00/5 共2次评分 |
开发者 | http://ryanckulp.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ryanckulp/hide_fake_news |
隐私政策页面URL | https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy |
支持的语言 | 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" ] } ] } |