├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── detect.js └── launch.js ├── index.js ├── lib ├── browsers.js ├── config.js ├── create_profiles.js ├── darwin │ ├── index.js │ └── util.js ├── detect.js ├── instance.js └── run.js ├── package.json ├── res ├── Preferences ├── operaprefs.ini └── phantom.js └── test └── browsers.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/README.md -------------------------------------------------------------------------------- /example/detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/example/detect.js -------------------------------------------------------------------------------- /example/launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/example/launch.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/index.js -------------------------------------------------------------------------------- /lib/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/browsers.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/create_profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/create_profiles.js -------------------------------------------------------------------------------- /lib/darwin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/darwin/index.js -------------------------------------------------------------------------------- /lib/darwin/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/darwin/util.js -------------------------------------------------------------------------------- /lib/detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/detect.js -------------------------------------------------------------------------------- /lib/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/instance.js -------------------------------------------------------------------------------- /lib/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/lib/run.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/package.json -------------------------------------------------------------------------------- /res/Preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/res/Preferences -------------------------------------------------------------------------------- /res/operaprefs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/res/operaprefs.ini -------------------------------------------------------------------------------- /res/phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/res/phantom.js -------------------------------------------------------------------------------- /test/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james-browser-launcher/HEAD/test/browsers.js --------------------------------------------------------------------------------