Hide Fake News - Avoid MSM Lies on Twitter
Free tool that hides fake news while you browse Twitter.
Co to jest Hide Fake News - Avoid MSM Lies on Twitter?
Hide Fake News - Avoid MSM Lies on Twitter to rozszerzenie Chrome opracowane przez http://ryanckulp.com, a jego główną funkcją jest „Free tool that hides fake news while you browse Twitter.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hide Fake News - Avoid MSM Lies on Twitter
Pobierz pliki rozszerzeń Hide Fake News - Avoid MSM Lies on Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
"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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lihcikjmjdlidleajjjkabhmbeghjkda |
Oficjalny URL | https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda |
Opis | Free tool that hides fake news while you browse Twitter. |
Rozmiar pliku | 42.22 KB |
Liczba instalacji | 11 |
Aktualna Wersja | 0.2 |
Ostatnia Aktualizacja | 2016-12-22 |
Data Publikacji | 2016-12-22 |
Ocena | 1.00/5 Łącznie 2 Oceny |
Deweloper | http://ryanckulp.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ryanckulp/hide_fake_news |
Adres URL Strony Polityki Prywatności | https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy |
Obsługiwane Języki | 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" ] } ] } |