Phish Alert
A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.
Phish Alert란 무엇입니까?
Phish Alert은(는) Ben Balcombe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance."입니다.
확장 프로그램 스크린샷
Phish Alert 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Phish Alert is a free open-source tool to give users an extra layer of assurance when browsing their emails. It should be said that the extension does not save or send any email or personal data about the user. Its primary function is to silently and unobtrusively scan an email once opened and perform a number of checks against common phishing tactics used by cyber criminals. This information is then presented to the user in a friendly and easy to understand way. The user can optionally allow the extension to actively warn them when it thinks the email is of concern and the frequency and threshold of these warnings is completely customisable. Top Features: - Detect and warn from potential phishing emails - Educate users on what to look for in phishing emails.
확장 프로그램 기본 정보
이름 | Phish Alert |
ID | plmmadcoagfaddabkjcolnplkfddbglp |
공식 URL | https://chromewebstore.google.com/detail/phish-alert/plmmadcoagfaddabkjcolnplkfddbglp |
설명 | A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance. |
파일 크기 | 887 KB |
설치 횟수 | 156 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2022-05-02 |
출시 날짜 | 2022-04-14 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Ben Balcombe |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Phish Alert", "description": "A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.", "manifest_version": 3, "version": "1.1.0", "permissions": [ "storage" ], "icons": { "16": ".\/icons\/icon-16x16.png", "48": ".\/icons\/icon-48x48.png", "128": ".\/icons\/icon-128x128.png" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "js\/extensionInjector.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "js\/gmailJsLoader.js", "js\/extension.js" ], "matches": [ "*:\/\/mail.google.com\/*" ] } ], "host_permissions": [ "*:\/\/mail.google.com\/*" ], "action": { "default_popup": "Popup.html" } } |