XSS

Web Development tool

¿Qué es XSS?

XSS es una extensión de Chrome desarrollada por totofish2021, y su función principal es "Web Development tool".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión XSS

Descarga archivos de extensión XSS 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 chrome extension tool that can inject custom scripts into the current web page.

For example, loading Jquery into the page to facilitate DOM operations, automatically filling in form content, or executing other JavaScript scripts to replace manual repetitive operations for testing or development and debugging.


Source repository: https://github.com/totofish/XSS                    

Información Básica de la Extensión

Nombre XSS XSS
ID bebjbdbgpmgdlfehkibnmgmbkcniaeij
URL Oficial https://chromewebstore.google.com/detail/xss/bebjbdbgpmgdlfehkibnmgmbkcniaeij
Descripción Web Development tool
Tamaño del Archivo 232 KB
Cantidad de Instalaciones 2,136
Versión Actual 1.2.0
Última Actualización 2022-01-31
Fecha de Publicación 2021-04-09
Calificación 5.00/5 Total de 7 Calificaciones
Desarrollador totofish2021
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/totofish/XSS
Idiomas Soportados en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.2.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "XSS",
        "default_popup": "GUI.html",
        "default_icon": "icon16.png"
    },
    "permissions": [
        "notifications",
        "contextMenus",
        "storage",
        "downloads",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extension\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "extension\/background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    }
}