Sentinel

Clean up the BS from your social media feed

Hvad er Sentinel?

Sentinel er en Chrome-udvidelse udviklet af AliTeshnizi, og dens hovedfunktion er "Clean up the BS from your social media feed".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Sentinel-udvidelses-CRX-fil

Download Sentinel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Sentinel Sentinel
ID fkmbhpipdlamijgojpjflhonefdgaehj
Officiel URL https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj
Beskrivelse Clean up the BS from your social media feed
Filstørrelse 45.11 KB
Antal Installationer 48
Nuværende Version 0.4
Senest Opdateret 2023-09-09
Udgivelsesdato 2023-08-21
Bedømmelse 5.00/5 Samlet 6 Bedømmelser
Udvikler AliTeshnizi
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/teshnizi/Sentinel
Understøttede Sprog 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
    }
}