Hide Fake News - Avoid MSM Lies on Twitter
Free tool that hides fake news while you browse Twitter.
¿Qué es Hide Fake News - Avoid MSM Lies on Twitter?
Hide Fake News - Avoid MSM Lies on Twitter es una extensión de Chrome desarrollada por http://ryanckulp.com, y su función principal es "Free tool that hides fake news while you browse Twitter.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Hide Fake News - Avoid MSM Lies on Twitter
Descarga archivos de extensión Hide Fake News - Avoid MSM Lies on Twitter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
"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
Información Básica de la Extensión
Nombre | |
ID | lihcikjmjdlidleajjjkabhmbeghjkda |
URL Oficial | https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda |
Descripción | Free tool that hides fake news while you browse Twitter. |
Tamaño del Archivo | 42.22 KB |
Cantidad de Instalaciones | 11 |
Versión Actual | 0.2 |
Última Actualización | 2016-12-22 |
Fecha de Publicación | 2016-12-22 |
Calificación | 1.00/5 Total de 2 Calificaciones |
Desarrollador | http://ryanckulp.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/ryanckulp/hide_fake_news |
URL de la Página de Política de Privacidad | https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy |
Idiomas Soportados | 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" ] } ] } |