Socket Puppet

A chrome extension to hack websockets

Cos'è Socket Puppet?

Socket Puppet è un'estensione di Chrome sviluppata da http://mrglass.org, e la sua funzione principale è "A chrome extension to hack websockets".

Scarica il file CRX dell'estensione Socket Puppet

Scarica i file di estensione Socket Puppet 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

                        This is an extensions that allows you to monitor and hack websockets.                    

Informazioni di Base sull'Estensione

Nome Socket Puppet Socket Puppet
ID odpmdfegfklbkkljglpaholpnhkmdbfo
URL Ufficiale https://chrome.google.com/webstore/detail/socket-puppet/odpmdfegfklbkkljglpaholpnhkmdbfo
Descrizione A chrome extension to hack websockets
Dimensione del File 10.12 KB
Conteggio Installazioni 93
Versione Corrente 0.5
Ultimo Aggiornamento 2013-07-31
Data di Pubblicazione 2013-07-31
Valutazione 2.50/5 Totale 6 Valutazioni
Sviluppatore http://mrglass.org
Tipo di Pagamento free
Sito Web dell'Estensione http://socketpuppet.mrglass.org/
URL della Pagina di Aiuto http://socketpuppet.mrglass.org/docs
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Socket Puppet",
    "description": "A chrome extension to hack websockets",
    "version": "0.5",
    "devtools_page": "devtoolsinjector.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "injector.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "socketPuppet.js",
        "devtoolsinjector.js",
        "devToolsTab.js"
    ]
}