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
公式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
Eメール [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"
            ]
        }
    ]
}