Opener Detector

Checks for window.opener vulnerabilities as you browse.

¿Qué es Opener Detector?

Opener Detector es una extensión de Chrome desarrollada por Harry Cutts, y su función principal es "Checks for window.opener vulnerabilities as you browse.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Opener Detector

Descarga archivos de extensión Opener Detector en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A simple browser extension which checks for window.opener vulnerabilities as you browse. When it finds one, it shows a warning page in the vulnerable tab, so that you can report or fix the vulnerability. (Use the back button to return to the page.) Individual pages and whole domains can be added to an ignore list, and by default, vulnerabilities between pages of the same origin (e.g. https://example.com/foo.html and https://example.com/bar.html) are not reported, though this can be changed in the settings.

window.opener vulnerabilities allow Web pages to control the tab which opened them. They can be fixed on many browsers simply by adding rel=noopener to your links. For more details, check out Mathias Bynens' article (https://mathiasbynens.github.io/rel-noopener/).

Please use responsibly. Disclose vulnerabilities you find, or fix them. Keep your hat white.

Source code is available on GitHub (https://github.com/HarryCutts/opener-detector), under the 3-clause BSD license. Contributions welcome!                    

Información Básica de la Extensión

Nombre Opener Detector Opener Detector
ID glgmjdmfggnngmedfgccfdbhdjlfafin
URL Oficial https://chromewebstore.google.com/detail/opener-detector/glgmjdmfggnngmedfgccfdbhdjlfafin
Descripción Checks for window.opener vulnerabilities as you browse.
Tamaño del Archivo 29.94 KB
Cantidad de Instalaciones 77
Versión Actual 1.0.0
Última Actualización 2017-09-04
Fecha de Publicación 2017-09-03
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Harry Cutts
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Opener Detector",
    "version": "1.0.0",
    "description": "Checks for window.opener vulnerabilities as you browse.",
    "homepage_url": "https:\/\/github.com\/HarryCutts\/opener-detector",
    "icons": {
        "48": "icons\/icon.png",
        "96": "icons\/[email protected]"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/browser-polyfill.min.js",
                "config.js",
                "check.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "vuln_report_page.html"
    ]
}