├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── chrome ├── background.js └── manifest.json ├── firefox ├── background.js └── manifest.json ├── nodejs ├── chrome │ └── native.messaging.example.json ├── example.js └── firefox │ └── native.messaging.example.json ├── package.json └── protocol.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/README.md -------------------------------------------------------------------------------- /chrome/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/chrome/background.js -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /firefox/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/firefox/background.js -------------------------------------------------------------------------------- /firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/firefox/manifest.json -------------------------------------------------------------------------------- /nodejs/chrome/native.messaging.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/nodejs/chrome/native.messaging.example.json -------------------------------------------------------------------------------- /nodejs/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/nodejs/example.js -------------------------------------------------------------------------------- /nodejs/firefox/native.messaging.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/nodejs/firefox/native.messaging.example.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/package.json -------------------------------------------------------------------------------- /protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simov/native-messaging/HEAD/protocol.js --------------------------------------------------------------------------------