XSS

Web Development tool

Cos'è XSS?

XSS è un'estensione di Chrome sviluppata da totofish2021, e la sua funzione principale è "Web Development tool".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione XSS

Scarica i file di estensione XSS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome XSS XSS
ID bebjbdbgpmgdlfehkibnmgmbkcniaeij
URL Ufficiale https://chromewebstore.google.com/detail/xss/bebjbdbgpmgdlfehkibnmgmbkcniaeij
Descrizione Web Development tool
Dimensione del File 232 KB
Conteggio Installazioni 2,136
Versione Corrente 1.2.0
Ultimo Aggiornamento 2022-01-31
Data di Pubblicazione 2021-04-09
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore totofish2021
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/totofish/XSS
Lingue Supportate 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
    }
}