├── .gitignore ├── README.md ├── chrome └── ScreenSharing │ ├── CREDITS.md │ ├── README.md │ ├── background-script.js │ ├── logo128.png │ ├── logo128transparent.png │ ├── logo16.png │ ├── logo48.png │ └── manifest.json ├── firefox ├── README.md └── ScreenSharing │ ├── .jpmignore │ ├── LICENSE.txt │ ├── index.js │ └── package.json └── screensharing-test.html /.gitignore: -------------------------------------------------------------------------------- 1 | firefox/ScreenSharing/node_modules/ 2 | *.xpi 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/README.md -------------------------------------------------------------------------------- /chrome/ScreenSharing/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/CREDITS.md -------------------------------------------------------------------------------- /chrome/ScreenSharing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/README.md -------------------------------------------------------------------------------- /chrome/ScreenSharing/background-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/background-script.js -------------------------------------------------------------------------------- /chrome/ScreenSharing/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/logo128.png -------------------------------------------------------------------------------- /chrome/ScreenSharing/logo128transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/logo128transparent.png -------------------------------------------------------------------------------- /chrome/ScreenSharing/logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/logo16.png -------------------------------------------------------------------------------- /chrome/ScreenSharing/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/logo48.png -------------------------------------------------------------------------------- /chrome/ScreenSharing/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/chrome/ScreenSharing/manifest.json -------------------------------------------------------------------------------- /firefox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/firefox/README.md -------------------------------------------------------------------------------- /firefox/ScreenSharing/.jpmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/firefox/ScreenSharing/.jpmignore -------------------------------------------------------------------------------- /firefox/ScreenSharing/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/firefox/ScreenSharing/LICENSE.txt -------------------------------------------------------------------------------- /firefox/ScreenSharing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/firefox/ScreenSharing/index.js -------------------------------------------------------------------------------- /firefox/ScreenSharing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/firefox/ScreenSharing/package.json -------------------------------------------------------------------------------- /screensharing-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/screensharing-extensions/HEAD/screensharing-test.html --------------------------------------------------------------------------------