Clean Feed

Removes all shared content from Facebook.

Clean Feed là gì?

Clean Feed là một tiện ích mở rộng Chrome được phát triển bởi Tyler Aldrich, và tính năng chính của nó là "Removes all shared content from Facebook.".

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

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

                        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                    

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

Tên Clean Feed Clean Feed
ID acjebhjdfoagigikeopkaadohklkklhl
URL Chính Thức https://chrome.google.com/webstore/detail/clean-feed/acjebhjdfoagigikeopkaadohklkklhl
Mô tả Removes all shared content from Facebook.
Kích Thước Tệp 35.96 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-08-08
Ngày Phát Hành 2016-08-08
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Tyler Aldrich
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}