Reddit Filter

Filter subreddits from your reddit feed.

Что такое Reddit Filter?

Reddit Filter - это расширение Chrome, разработанное prudhvirajs, и его основная функция - "Filter subreddits from your reddit feed.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Reddit Filter

Скачайте файлы расширений Reddit Filter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Filter subreddits from your reddit feed.
If you don't want to see certain subreddits in your feeds, click a simple close button on top right corner of the post to filter any future posts from the subreddit.
You can also manage the subreddits being filtered.
This also remove any promoted posts (ads).                    

Основная информация о расширении

Название Reddit Filter Reddit Filter
ID eifldojanodifhgcaodhilahkmcbojji
Официальный URL https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji
Описание Filter subreddits from your reddit feed.
Размер файла 43.83 KB
Количество установок 111
Текущая Версия 0.1
Последнее Обновление 2021-06-01
Дата публикации 2021-05-31
Рейтинг 3.29/5 Всего 7 оценок
Разработчик prudhvirajs
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Filter",
    "description": "Filter subreddits from your reddit feed.",
    "version": "0.1",
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/r\/popular\/",
                "https:\/\/www.reddit.com\/",
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "content.js",
                "jquery-3.6.0.min.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "\/images\/RF16.png",
        "32": "\/images\/RF32.png",
        "48": "\/images\/RF48.png",
        "128": "\/images\/RF128.png"
    },
    "manifest_version": 2
}