Hi there! As part of my work, I need to create a Photoshop plug-in or extension that does three things:
- Loads on startup
- Communicates with an external database via a Python module
- Can be easily distributed to many users working in a private network
I have written a prototype that successfully uses Websockets to communicate with our database (it’s basically a variation of the websockets-io example from the UXP Photoshop Plugin Samples repository). However, I am not sure how to make the plug-in load on startup. Currently, I launch Photoshop → Plugins menu → Development → Get Developer Tools → Load my plugin. This will not work in production, as users will need to see the plugin menu on startup and be able to work with it right away.
I read that you can package the plugin and install it, which causes it to show up in the Plugins menu on startup. The big problem with this is that we might not be able to manually install the plugin on every user’s machine, and I doubt we could ask the users to do so.
Is there any other way to make the plugin show up on launch?
Conversely, is there a way to programmatically install the packaged plugin at a specified location on a user’s computer? The users’ current workflow is that they log into their workstations and launch Photoshop from a customized show launcher that we wrote, so it shouldn’t be too hard to add a plugin installation script into the show launcher.