News filter

Hide unwanted news from pages, based on forbidden words

News filterคืออะไร?

News filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย softwareamman และคุณลักษณะหลักของมันคือ "Hide unwanted news from pages, based on forbidden words"

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

screenshot
screenshot

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

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

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

                        Hide unwanted news from pages, based on forbidden words. Enter the words you want to block, words are entered in lowercase letters in the format first|second|third                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ News filter News filter
ID mehaipijahdeeiooaebccpedpeelbjeh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/news-filter/mehaipijahdeeiooaebccpedpeelbjeh
คำอธิบาย Hide unwanted news from pages, based on forbidden words
ขนาดไฟล์ 8.31 KB
จำนวนการติดตั้ง 154
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-06-26
วันที่เผยแพร่ 2020-07-28
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา softwareamman
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "News filter",
    "version": "1.0",
    "description": "Hide unwanted news from pages, based on forbidden words",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "32": "images\/news_filter_32.png",
            "48": "images\/news_filter_48.png",
            "128": "images\/news_filter_128.png"
        }
    },
    "icons": {
        "32": "images\/news_filter_32.png",
        "48": "images\/news_filter_48.png",
        "128": "images\/news_filter_128.png"
    },
    "manifest_version": 2
}