Newsblock

Your recommender of credible news sources

Newsblock란 무엇입니까?

Newsblock은(는) https://newsblock.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Your recommender of credible news sources"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Newsblock 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Newsblock was made to fight bad/clickbaity news by redirecting you to the best article covering the stories you click on

With the Newsblock plugin you can support quality news by simply browsing the web                    

확장 프로그램 기본 정보

이름 Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
공식 URL https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
설명 Your recommender of credible news sources
파일 크기 160 KB
설치 횟수 29
현재 버전 1.09
최근 업데이트 2018-08-30
출시 날짜 2018-08-29
개발자 https://newsblock.co
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://newsblock.co
개인정보 보호 정책 페이지 URL https://github.com/jawerty/myAlgorithm/blob/main/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Newsblock",
    "description": "Your recommender of credible news sources",
    "version": "1.09",
    "browser_action": {
        "default_icon": "newsblock_icon_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "newsblock_icon_16.png",
        "48": "newsblock_icon_48.png",
        "128": "newsblock_icon_128.png"
    },
    "background": {
        "scripts": [
            "google-analytics-bundle.js",
            "levenshtein.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "activeTab",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}