Clean Feed

Removes all shared content from Facebook.

什麼是Clean Feed?

Clean Feed是由Tyler Aldrich開發的Chrome擴展程式,該擴展的主要功能是“Removes all shared content from Facebook.”。

下載Clean Feed擴展crx文件

下載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
官方網址 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
}