Feed Filter

Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…

Feed Filterとは何ですか?

Feed FilterはMakerによって開発されたChromeの拡張機能で、その主な機能は「Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…」です。

拡張機能のスクリーンショット

screenshot

Feed Filter拡張機能のCRXファイルをダウンロード

Feed Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.                    

拡張機能の基本情報

名前 Feed Filter Feed Filter
ID ajhegeembcahfofkkhafolgpjgnimnib
公式URL https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib
説明 Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
ファイルサイズ 469 KB
インストール数 81
現在のバージョン 1.0.1
最終更新日 2021-05-11
公開日 2021-05-11
開発者 Maker
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://automatics.one/privacy
対応言語 en
manifest.json
{
    "name": "Feed Filter",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.1",
    "description": "",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "background\/background.html"
    },
    "permissions": [
        "storage",
        "cookies",
        "notifications",
        "*:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.facebook.com\/"
            ],
            "js": [
                "scripts\/content_script.js",
                "scripts\/jquery.js"
            ]
        }
    ]
}