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.”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Hide Fake News - Avoid MSM Lies on Twitter Hide Fake News - Avoid MSM Lies on Twitter
ID lihcikjmjdlidleajjjkabhmbeghjkda
官方網址 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"
            ]
        }
    ]
}