chromix-too
chromix-too copied to clipboard
External access to Chrome's internal Javascript API.
https://chrome.google.com/webstore/detail/chromix-too/ppapdfccnamacakfkpfmpfnefpeajboj 404s Screenshot from ungoogled chromium's "Chromium Web Store" extension (manages extensions): 
README.md says: > For example, the following command closes all tabs on stackoverflow: > > `chromix-too rm stackoverflow.com` Also mention how to close all tabs matching a regexp, e.g., `example.net/*/nurd/*.html`...
Could `chromix-too source` be an alias for something like `chromix-too raw chrome.tabs.executeScript '{"code":"console.log(document.body.innerHTML);"}'`? https://github.com/prasmussen/chrome-cli `chrome-cli source` prints source from active tab. `chrome-cli source -t ` prints source from specified tab.
... is there any reason this is not currently in the manifest?
* https://github.com/prasmussen/chrome-cli uses a different approach, but it has pros and cons (eg requires no extension nor server)
Bumps [ws](https://github.com/websockets/ws) from 5.1.1 to 7.4.6. Release notes Sourced from ws's releases. 7.4.6 Bug fixes Fixed a ReDoS vulnerability (00c425ec). A specially crafted value of the Sec-Websocket-Protocol header could be...
I installed chromix-too and everything worked for about an hour but now when I run something, e.g: ```` $ chromix-too focus gmail ```` I get the following error: ```` undefined:1...
As far as I understand this, the client and plugin communicate over websockets. ``` clientserverplugin ``` Is it possible for them to communicate directly without the server?-- or is that...
Hi, there is any way to make it work with different user profiles? Right now If I have two different chrome windows each one associated with a different profile, cromix-too-server...
Use the provided args._ which contains all undefined parameters. This solved using the --sock parameter. Before this you would simply get: 'error: unknown command: --sock' because commandName would be set...