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
官方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
}