Anti Phish

Anti BlockChain-Phish By Amber Group

Anti Phish란 무엇입니까?

Anti Phish은(는) steve.gu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Anti BlockChain-Phish By Amber Group"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The purpose of this extension is to protect users from phishing. It uses a specific database and intelligent detection of domain details to determine the legitimacy of a domain name.

Phishing websites tricks you into sharing your most sensitive data by imitating companies you trust. 

Stop Phishing in real time with anti-phish, and if a user confirms that a site is secure, they can set up a whitelist.

The extension does not save or send any email or personal data about the user. 

Protect yourself and your loved ones from constantly evolving threat factors using our extension that can identify and alert before you get into the phishing trap.

Version 1.1
- Updated the plugin logo
- Reduced the impact of other plugins

Version 1.2
- Fixed some bugs

Version 1.3
- Reduced network requests for the same page
- Fixed some bugs

Version 1.4
- Add whitelist

Version 1.4.1
-Fixed the remote server crash issue                    

확장 프로그램 기본 정보

이름 Anti Phish Anti Phish
ID foemjaofcaemgdnghfhiipokfolgojgb
공식 URL https://chrome.google.com/webstore/detail/anti-phish/foemjaofcaemgdnghfhiipokfolgojgb
설명 Anti BlockChain-Phish By Amber Group
파일 크기 158 KB
설치 횟수 285
현재 버전 1.4.1
최근 업데이트 2022-10-10
출시 날짜 2022-06-07
평점 5.00/5 총 1 개의 평점
개발자 steve.gu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ambergroup.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anti Phish",
    "version": "1.4.1",
    "description": "Anti BlockChain-Phish By Amber Group",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "scripting",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "image\/16.png",
            "32": "image\/32.png",
            "48": "image\/48.png",
            "128": "image\/128.png"
        }
    },
    "icons": {
        "128": "image\/128.png",
        "16": "image\/16.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/check.js"
            ],
            "run_at": "document_end"
        }
    ]
}