├── .babelrc ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .vscode └── launch.json ├── LICENSE ├── NOTICE ├── README.md ├── app ├── .eslintrc ├── app.html ├── main.dev.js ├── menu.js ├── package.json └── preload.js ├── appveyor.yml ├── internals └── scripts │ └── CheckNodeEnv.js ├── package.json ├── plugins └── README.md ├── python-binaries └── .gitignore ├── walkthrough.md ├── webpack └── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/README.md -------------------------------------------------------------------------------- /app/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/app/.eslintrc -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/app/app.html -------------------------------------------------------------------------------- /app/main.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/app/main.dev.js -------------------------------------------------------------------------------- /app/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/app/menu.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/app/package.json -------------------------------------------------------------------------------- /app/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/app/preload.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/appveyor.yml -------------------------------------------------------------------------------- /internals/scripts/CheckNodeEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/internals/scripts/CheckNodeEnv.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/package.json -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/plugins/README.md -------------------------------------------------------------------------------- /python-binaries/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/walkthrough.md -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/webpack/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webrecorder/webrecorder-player/HEAD/yarn.lock --------------------------------------------------------------------------------