Clean Feed

Removes all shared content from Facebook.

Clean Feedคืออะไร?

Clean Feed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tyler Aldrich และคุณลักษณะหลักของมันคือ "Removes all shared content from Facebook."

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

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

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

                        This is a small chrome extension that every second will hide any post on Facebook that contains the word "shared." This is purposely overly aggressive, because 1. I'm lazy, and 2. I really don't care what most people say on Facebook anyways. Code for this can be found here, so you know I'm not doing anything malicious and I'm only doing something incredibly stupid: https://github.com/TylerAldrich/CleanFeed                    

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

ชื่อ Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
คำอธิบาย Removes all shared content from Facebook.
ขนาดไฟล์ 35.96 KB
จำนวนการติดตั้ง 21
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2016-08-08
วันที่เผยแพร่ 2016-08-08
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Tyler Aldrich
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clean Feed",
    "description": "Removes all shared content from Facebook.",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.facebook.com\/*",
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "remove_shared.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        ""
    ],
    "manifest_version": 2
}