Newsblock

Your recommender of credible news sources

Newsblockคืออะไร?

Newsblock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://newsblock.co และคุณลักษณะหลักของมันคือ "Your recommender of credible news sources"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Newsblock

ดาวน์โหลดไฟล์ส่วนขยาย Newsblock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}