Feed Filter

Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…

Feed Filterคืออะไร?

Feed Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Maker และคุณลักษณะหลักของมันคือ "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…"

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

screenshot

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

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

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

                        Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.                    

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

ชื่อ Feed Filter Feed Filter
ID ajhegeembcahfofkkhafolgpjgnimnib
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib
คำอธิบาย Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
ขนาดไฟล์ 469 KB
จำนวนการติดตั้ง 81
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-05-11
วันที่เผยแพร่ 2021-05-11
ผู้พัฒนา Maker
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://automatics.one/privacy
ภาษาที่รองรับ en
manifest.json
{
    "name": "Feed Filter",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.1",
    "description": "",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "background\/background.html"
    },
    "permissions": [
        "storage",
        "cookies",
        "notifications",
        "*:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.facebook.com\/"
            ],
            "js": [
                "scripts\/content_script.js",
                "scripts\/jquery.js"
            ]
        }
    ]
}