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 هو إضافة Chrome تم تطويرها بواسطة http://ryanckulp.com، والميزة الرئيسية لها هي "Free tool that hides fake news while you browse Twitter.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Hide Fake News - Avoid MSM Lies on Twitter

قم بتنزيل ملفات الامتداد Hide Fake News - Avoid MSM Lies on Twitter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        "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                    

معلومات أساسية عن التمديد

الاسم Hide Fake News - Avoid MSM Lies on Twitter Hide Fake News - Avoid MSM Lies on Twitter
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
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}