PAN Discovery Browser
Protect your browser from pages containing cardholder data.
PAN Discovery Browser क्या है?
PAN Discovery Browser Sure QC द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Protect your browser from pages containing cardholder data."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PAN Discovery Browser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*" ] } ] } |