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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
    }
}