Sentinel

Clean up the BS from your social media feed

Sentinel là gì?

Sentinel là một tiện ích mở rộng Chrome được phát triển bởi AliTeshnizi, và tính năng chính của nó là "Clean up the BS from your social media feed".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sentinel

Tải xuống các tệp mở rộng Sentinel dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sentinel Sentinel
ID fkmbhpipdlamijgojpjflhonefdgaehj
URL Chính Thức https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj
Mô tả Clean up the BS from your social media feed
Kích Thước Tệp 45.11 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2023-09-09
Ngày Phát Hành 2023-08-21
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển AliTeshnizi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/teshnizi/Sentinel
Ngôn Ngữ Được Hỗ Trợ 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
    }
}