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.”。

扩展截图

screenshot

下载PAN Discovery Browser扩展crx文件

下载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.                    

扩展基本信息

名称 PAN Discovery Browser PAN Discovery Browser
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:\/\/*\/*"
            ]
        }
    ]
}