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 - это расширение Chrome, разработанное 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 расширения Feed Filter

Скачайте файлы расширений 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
Электронная почта [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"
            ]
        }
    ]
}