PAN Discovery Browser
Protect your browser from pages containing cardholder data.
PAN Discovery Browserคืออะไร?
PAN Discovery Browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sure QC และคุณลักษณะหลักของมันคือ "Protect your browser from pages containing cardholder data."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PAN Discovery Browser
ดาวน์โหลดไฟล์ส่วนขยาย PAN Discovery Browser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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:\/\/*\/*" ] } ] } |