PAN Discovery Browser
Protect your browser from pages containing cardholder data.
PAN Discovery Browser란 무엇입니까?
PAN Discovery Browser은(는) Sure QC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Protect your browser from pages containing cardholder data."입니다.
확장 프로그램 스크린샷
PAN Discovery Browser 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to prevent payment card numbers from being displayed and to get a notification that the page potentially contains such information. All detection is done in-browser and no information is sent to any other location. It's useful for preventing accidental forwarding of emails with card numbers in online email systems. It can allow the identification, reorting and instigation of Incident Response where unexpected credit card or debit card numbers are located. See https://www.pcisecuritystandards.org/ for details of the PCI DSS standard.
확장 프로그램 기본 정보
이름 | |
ID | khfbjggmphfkfgiojfjljbhcopfgphjk |
공식 URL | https://chromewebstore.google.com/detail/pan-discovery-browser/khfbjggmphfkfgiojfjljbhcopfgphjk |
설명 | Protect your browser from pages containing cardholder data. |
파일 크기 | 34.56 KB |
설치 횟수 | 18 |
현재 버전 | 1.4 |
최근 업데이트 | 2019-02-22 |
출시 날짜 | 2019-02-17 |
개발자 | Sure QC |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sureqc.wordpress.com/pan-discovery-browser/privacy-and-usage-policies |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PAN Discovery Browser", "short_name": "PAN Discovery", "description": "Protect your browser from pages containing cardholder data.", "version": "1.4", "applications": { "gecko": { "id": "{26c292d3-6808-4a7a-8f05-e9d9663374a5}", "strict_min_version": "48.0" } }, "icons": { "48": "icons\/icon-48.png" }, "permissions": [ "notifications" ], "content_security_policy": "default-src 'self'; script-src 'self'; img-src 'self'; style-src 'self' 'unsafe-inline';", "browser_action": { "browser_style": true, "default_icon": { "48": "icons\/icon-48.png" }, "default_title": "PAN Discovery" }, "background": { "scripts": [ "bg-notify.js" ], "persistent": false }, "content_scripts": [ { "all_frames": true, "js": [ "context.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ] } ] } |