Sentinel

Clean up the BS from your social media feed

What is Sentinel?

Sentinel is a Chrome extension developed by AliTeshnizi, and its main feature is "Clean up the BS from your social media feed".

Extension Screenshots

screenshot
screenshot

Download Sentinel Extension CRX File

Download Sentinel extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Sentinel Sentinel
ID fkmbhpipdlamijgojpjflhonefdgaehj
Official URL https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj
Description Clean up the BS from your social media feed
File Size 45.11 KB
Installation Count 48
Current Version 0.4
Last Updated 2023-09-09
Publish Date 2023-08-21
Rating 5.00/5 Total 6 Ratings
Developer AliTeshnizi
Email [email protected]
Payment Type free
Extension Website https://github.com/teshnizi/Sentinel
Supported Languages 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
    }
}