Sentinel

Clean up the BS from your social media feed

Was ist Sentinel?

Sentinel ist eine Chrome-Erweiterung, die von AliTeshnizi entwickelt wurde, und ihr Hauptmerkmal ist "Clean up the BS from your social media feed".

Erweiterungsscreenshots

screenshot
screenshot

Sentinel-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sentinel-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Sentinel Sentinel
ID fkmbhpipdlamijgojpjflhonefdgaehj
Offizielle URL https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj
Beschreibung Clean up the BS from your social media feed
Dateigröße 45.11 KB
Installationsanzahl 48
Aktuelle Version 0.4
Letztes Update 2023-09-09
Veröffentlichungsdatum 2023-08-21
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler AliTeshnizi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/teshnizi/Sentinel
Unterstützte Sprachen 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
    }
}