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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}