PAN Discovery Browser

Protect your browser from pages containing cardholder data.

O que é PAN Discovery Browser?

PAN Discovery Browser é uma extensão do Chrome desenvolvida por Sure QC, e sua principal característica é "Protect your browser from pages containing cardholder data.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PAN Discovery Browser

Baixe arquivos de extensão PAN Discovery Browser no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PAN Discovery Browser PAN Discovery Browser
ID khfbjggmphfkfgiojfjljbhcopfgphjk
URL Oficial https://chromewebstore.google.com/detail/pan-discovery-browser/khfbjggmphfkfgiojfjljbhcopfgphjk
Descrição Protect your browser from pages containing cardholder data.
Tamanho do Arquivo 34.56 KB
Contagem de Instalações 18
Versão Atual 1.4
Última Atualização 2019-02-22
Data de Publicação 2019-02-17
Desenvolvedor Sure QC
Tipo de Pagamento free
URL da Página de Política de Privacidade https://sureqc.wordpress.com/pan-discovery-browser/privacy-and-usage-policies
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}