Sentinel

Protects users from phishing websites

Sentinel란 무엇입니까?

Sentinel은(는) Sentinel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Protects users from phishing websites"입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Sentinel is a browser extension built to block scam & phishing websites.                    

확장 프로그램 기본 정보

이름 Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
공식 URL https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
설명 Protects users from phishing websites
파일 크기 42.56 KB
설치 횟수 6,000
현재 버전 1.1
최근 업데이트 2021-12-10
출시 날짜 2021-12-10
개발자 Sentinel
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://sentinel.wtf/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sentinel",
    "version": "1.1",
    "description": "Protects users from phishing websites",
    "author": "Sentinel Team",
    "background": {
        "scripts": [
            ".\/src\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/afterpage.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "blocked.html"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "19": "icons\/19.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Sentinel",
        "default_popup": ".\/popup\/popup.html"
    },
    "icons": {
        "16": ".\/icons\/16.png",
        "19": ".\/icons\/19.png",
        "32": ".\/icons\/32.png",
        "48": ".\/icons\/48.png",
        "128": ".\/icons\/128.png"
    }
}