Sentinel

Clean up the BS from your social media feed

Co to jest Sentinel?

Sentinel to rozszerzenie Chrome opracowane przez AliTeshnizi, a jego główną funkcją jest „Clean up the BS from your social media feed”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Sentinel

Pobierz pliki rozszerzeń Sentinel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Sentinel Sentinel
ID fkmbhpipdlamijgojpjflhonefdgaehj
Oficjalny URL https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj
Opis Clean up the BS from your social media feed
Rozmiar pliku 45.11 KB
Liczba instalacji 48
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2023-09-09
Data Publikacji 2023-08-21
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper AliTeshnizi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/teshnizi/Sentinel
Obsługiwane Języki 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
    }
}