├── .gitignore ├── LICENSE.md ├── README.md ├── chrome_remote_interface ├── __init__.py ├── basic_addons.py ├── library.py └── protocol.json ├── example.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/README.md -------------------------------------------------------------------------------- /chrome_remote_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/chrome_remote_interface/__init__.py -------------------------------------------------------------------------------- /chrome_remote_interface/basic_addons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/chrome_remote_interface/basic_addons.py -------------------------------------------------------------------------------- /chrome_remote_interface/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/chrome_remote_interface/library.py -------------------------------------------------------------------------------- /chrome_remote_interface/protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/chrome_remote_interface/protocol.json -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pokemonish/chrome_remote_interface_python/HEAD/setup.py --------------------------------------------------------------------------------