Sentinel

Clean up the BS from your social media feed

Sentinel란 무엇입니까?

Sentinel은(는) AliTeshnizi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clean up the BS from your social media feed"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sentinel 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}