Sentinel

Clean up the BS from your social media feed

Что такое Sentinel?

Sentinel - это расширение Chrome, разработанное AliTeshnizi, и его основная функция - "Clean up the BS from your social media feed".

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

screenshot
screenshot

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

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

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

                        Sentinel is an open source chrome plugin that allows you to apply custom filters to the posts you see on LinkedIn, Twitter, Instagram, and soon other major social media!                    

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

Название Sentinel Sentinel
ID fkmbhpipdlamijgojpjflhonefdgaehj
Официальный URL https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj
Описание Clean up the BS from your social media feed
Размер файла 45.11 KB
Количество установок 48
Текущая Версия 0.4
Последнее Обновление 2023-09-09
Дата публикации 2023-08-21
Рейтинг 5.00/5 Всего 6 оценок
Разработчик AliTeshnizi
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/teshnizi/Sentinel
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sentinel",
    "version": "0.4",
    "description": "Clean up the BS from your social media feed",
    "icons": {
        "64": "icon512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*",
                "https:\/\/linkedin.com\/*"
            ],
            "js": [
                "linkedin.js"
            ]
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/x.com\/*",
                "https:\/\/www.x.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}