├── ChannelPlate.js ├── README.md ├── RemoteMethodCall.js ├── XHR.js ├── XHRInBackground.js ├── XHRInBackgroundServer.js ├── manifest.json └── test ├── childFrame.html ├── clientFrame.html ├── extension ├── background.html ├── background.js ├── testContentScript.js ├── testDevtoolsPage.html └── testDevtoolsPage.js └── parentFrame.html /ChannelPlate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/ChannelPlate.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/README.md -------------------------------------------------------------------------------- /RemoteMethodCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/RemoteMethodCall.js -------------------------------------------------------------------------------- /XHR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/XHR.js -------------------------------------------------------------------------------- /XHRInBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/XHRInBackground.js -------------------------------------------------------------------------------- /XHRInBackgroundServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/XHRInBackgroundServer.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/manifest.json -------------------------------------------------------------------------------- /test/childFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/childFrame.html -------------------------------------------------------------------------------- /test/clientFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/clientFrame.html -------------------------------------------------------------------------------- /test/extension/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/extension/background.html -------------------------------------------------------------------------------- /test/extension/background.js: -------------------------------------------------------------------------------- 1 | var proxy = new ChannelPlate.ChromeDevtoolsProxy(); -------------------------------------------------------------------------------- /test/extension/testContentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/extension/testContentScript.js -------------------------------------------------------------------------------- /test/extension/testDevtoolsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/extension/testDevtoolsPage.html -------------------------------------------------------------------------------- /test/extension/testDevtoolsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/extension/testDevtoolsPage.js -------------------------------------------------------------------------------- /test/parentFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChannelPlate/HEAD/test/parentFrame.html --------------------------------------------------------------------------------