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
}