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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Feed Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
            ]
        }
    ]
}