XSS

Web Development tool

Qu'est-ce que XSS ?

XSS est une extension Chrome développée par totofish2021, et sa fonction principale est "Web Development tool".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension XSS

Téléchargez les fichiers d'extension XSS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom XSS XSS
ID bebjbdbgpmgdlfehkibnmgmbkcniaeij
URL Officiel https://chromewebstore.google.com/detail/xss/bebjbdbgpmgdlfehkibnmgmbkcniaeij
Description Web Development tool
Taille du Fichier 232 KB
Nombre d'Installations 2,136
Version Actuelle 1.2.0
Dernière Mise à Jour 2022-01-31
Date de Publication 2021-04-09
Évaluation 5.00/5 Total 7 Évaluations
Développeur totofish2021
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/totofish/XSS
Langues Prises en Charge 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
    }
}