No Opener, No Phishers
Reduce the risk of falling victim to phishing attacks.
No Opener, No Phishers란 무엇입니까?
No Opener, No Phishers은(는) Jamie Farrelly에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reduce the risk of falling victim to phishing attacks."입니다.
확장 프로그램 스크린샷
No Opener, No Phishers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Any website that uses target="_blank" on their links, allows user generated content and doesn't use the rel="noopener" attribute on their links (I'm looking at you Facebook, Twitter etc.) is vulnerable to a scarily simple phishing attack. For an example of this kind of attack, view this example that I've made: https://jamiefarrelly.github.io/Rel-NoOpener-Example/ This Chrome extension is as simple as it gets, all it does is add "noopener noreferrer" to the rel attribute on all links on the pages that you're visiting so that you won't fall victim to this type of phishing attack. Open source on Github https://github.com/JamieFarrelly/No-Opener-No-Phishers
확장 프로그램 기본 정보
이름 | No Opener, No Phishers |
ID | hieejlcohhkjbpiihgphcnaaiehphike |
공식 URL | https://chromewebstore.google.com/detail/no-opener-no-phishers/hieejlcohhkjbpiihgphcnaaiehphike |
설명 | Reduce the risk of falling victim to phishing attacks. |
파일 크기 | 274 KB |
설치 횟수 | 851 |
현재 버전 | 2 |
최근 업데이트 | 2019-06-17 |
출시 날짜 | 2019-06-17 |
평점 | 4.78/5 총 9 개의 평점 |
개발자 | Jamie Farrelly |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No Opener, No Phishers", "version": "2", "description": "Reduce the risk of falling victim to phishing attacks.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/background.js" ], "run_at": "document_end", "all_frames": false } ], "icons": { "16": "images\/icon-16x16.png", "19": "images\/icon-19x19.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png", "130": "images\/icon-130x130.png", "550": "images\/icon-550x550.png" }, "browser_action": { "default_icon": "images\/icon-16x16.png" } } |