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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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