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 là gì?

Hide Fake News - Avoid MSM Lies on Twitter là một tiện ích mở rộng Chrome được phát triển bởi http://ryanckulp.com, và tính năng chính của nó là "Free tool that hides fake news while you browse Twitter.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Fake News - Avoid MSM Lies on Twitter

Tải xuống các tệp mở rộng Hide Fake News - Avoid MSM Lies on Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        "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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide Fake News - Avoid MSM Lies on Twitter Hide Fake News - Avoid MSM Lies on Twitter
ID lihcikjmjdlidleajjjkabhmbeghjkda
URL Chính Thức https://chrome.google.com/webstore/detail/hide-fake-news-avoid-msm/lihcikjmjdlidleajjjkabhmbeghjkda
Mô tả Free tool that hides fake news while you browse Twitter.
Kích Thước Tệp 42.22 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2016-12-22
Ngày Phát Hành 2016-12-22
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://ryanckulp.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ryanckulp/hide_fake_news
URL Trang Chính Sách Bảo Mật https://github.com/ryanckulp/twitter_ad_blocker/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}