Anti Phish

Anti BlockChain-Phish By Amber Group

Anti Phishคืออะไร?

Anti Phish เป็นส่วนขยายของ Chrome ที่พัฒนาโดย steve.gu และคุณลักษณะหลักของมันคือ "Anti BlockChain-Phish By Amber Group"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Anti Phish

ดาวน์โหลดไฟล์ส่วนขยาย Anti Phish ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}