Newsblock

Your recommender of credible news sources

Newsblock là gì?

Newsblock là một tiện ích mở rộng Chrome được phát triển bởi https://newsblock.co, và tính năng chính của nó là "Your recommender of credible news sources".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Newsblock

Tải xuống các tệp mở rộng Newsblock 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

                        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                    

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

Tên Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
URL Chính Thức https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
Mô tả Your recommender of credible news sources
Kích Thước Tệp 160 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.09
Cập Nhật Lần Cuối 2018-08-30
Ngày Phát Hành 2018-08-29
Nhà Phát Triển https://newsblock.co
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://newsblock.co
URL Trang Chính Sách Bảo Mật https://github.com/jawerty/myAlgorithm/blob/main/README.md
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}