Socket Puppet

A chrome extension to hack websockets

What is Socket Puppet?

Socket Puppet is a Chrome extension developed by http://mrglass.org, and its main feature is "A chrome extension to hack websockets".

Download Socket Puppet Extension CRX File

Download Socket Puppet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Socket Puppet Socket Puppet
ID odpmdfegfklbkkljglpaholpnhkmdbfo
Official URL https://chrome.google.com/webstore/detail/socket-puppet/odpmdfegfklbkkljglpaholpnhkmdbfo
Description A chrome extension to hack websockets
File Size 10.12 KB
Installation Count 93
Current Version 0.5
Last Updated 2013-07-31
Publish Date 2013-07-31
Rating 2.50/5 Total 6 Ratings
Developer http://mrglass.org
Payment Type free
Extension Website http://socketpuppet.mrglass.org/
Help Page URL http://socketpuppet.mrglass.org/docs
Supported Languages 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"
    ]
}