Socket Puppet

A chrome extension to hack websockets

什么是Socket Puppet?

Socket Puppet是由http://mrglass.org开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to hack websockets”。

下载Socket Puppet扩展crx文件

下载Socket Puppet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Socket Puppet Socket Puppet
ID odpmdfegfklbkkljglpaholpnhkmdbfo
官方URL https://chrome.google.com/webstore/detail/socket-puppet/odpmdfegfklbkkljglpaholpnhkmdbfo
简介 A chrome extension to hack websockets
文件大小 10.12 KB
安装次数 93
当前版本 0.5
更新时间 2013-07-31
上架时间 2013-07-31
评分 2.50/5 共6次评分
开发者 http://mrglass.org
付费类型 free
扩展官网 http://socketpuppet.mrglass.org/
帮助页面URL http://socketpuppet.mrglass.org/docs
支持的语言 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"
    ]
}