HackNotice Chrome Extension

HackNotice Chrome Extension

HackNotice Chrome Extension란 무엇입니까?

HackNotice Chrome Extension은(는) https://hacknotice.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HackNotice Chrome Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

HackNotice Chrome Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extends HackNotice, the easy and free personal security service.

The easiest way to know about hacks and identity leaks just got easier.  

This extension:
    * Alerts you in real time when you visit a site if the site has been hacked recently
    * Makes sure that your watchlist is complete by adding sites to HackNotice as you browse
    * Stay alerted on all the sites you care about with zero effort

Use HackNotice to:
    * Get a timeline of your historical hacks
    * Find where your digital identity has been leaked
    * Learn about new hacks and leaks in real-time
    * Take steps to reduce your risk and increase your security
    * Stay up to date on what new hacks are happening around the world
    * Share hack notices with friends so they can secure themselves                    

확장 프로그램 기본 정보

이름 HackNotice Chrome Extension HackNotice Chrome Extension
ID kbjanbmmokbpaibafdgehgkpncpdjbpf
공식 URL https://chromewebstore.google.com/detail/hacknotice-chrome-extensi/kbjanbmmokbpaibafdgehgkpncpdjbpf
설명 HackNotice Chrome Extension
파일 크기 147 KB
설치 횟수 1,323
현재 버전 1.0.23
최근 업데이트 2024-01-31
출시 날짜 2019-11-14
평점 4.53/5 총 17 개의 평점
개발자 https://hacknotice.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://hacknotice.com
도움말 페이지 URL https://hacknotice.zendesk.com/hc/en-us
개인정보 보호 정책 페이지 URL https://hacknotice.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HackNotice Chrome Extension",
    "short_name": "HackNotice Chrome Extension",
    "version": "1.0.23",
    "description": "HackNotice Chrome Extension",
    "host_permissions": [
        "*:\/\/extensionapi.hacknotice.com\/*",
        "https:\/\/extensionapi.hacknotice.com\/*",
        "https:\/\/vpn-dev-steve.hacknotice.com\/*",
        "*:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "notifications"
    ],
    "action": {
        "default_popup": "index.html?#\/popup",
        "default_title": "HackNotice Chrome Extension"
    },
    "content_scripts": [
        {
            "js": [
                "contentPage.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentPage.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "19": "assets\/hn_logo_19.png",
        "36": "assets\/hn_logo_36.png",
        "38": "assets\/hn_logo_38.png",
        "48": "assets\/hn_logo_48.png",
        "128": "assets\/hn_logo_128.png"
    },
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_security_policy": {
        "script-src": "'self' 'unsafe-eval' 'unsafe-inline'",
        "connect-src": "https:\/\/*",
        "extension_pages": "script-src 'self'; object-src 'self'",
        "Referrer-Policy": "unsafe-url"
    }
}