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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 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"
            ]
        }
    ]
}