Is there a way to install add ons without using the UI? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228) +---- Thread: Is there a way to install add ons without using the UI? (/showthread.php?tid=340195) |
Is there a way to install add ons without using the UI? - Raman325 - 2019-02-02 I'm using a headless version of Kodi to keep my media library up to date (https://hub.docker.com/r/linuxserver/kodi-headless). There are some great addons available to auto update libraries, keep it clean, etc., but I can't find a way through the web interface of Kodi to install an addon, and as far as I can tell my only alternative is to try to do it without the web interface or the UI. Is this possible? I recognize that you don't officially support the docker image I linked above, which is why I'm asking the question this way. Thanks! Raman RE: Is there a way to install add ons without using the UI? - pkscout - 2019-02-03 There might be a kind of hacky way, but I haven't tried it. If you unzip the addon, put it in userdata/addons, and then use a JSON call to activate it, that might work. https://kodi.wiki/view/JSON-RPC_API/v9#Addons.SetAddonEnabled (that JSON call is also available in older versions of the API, so you don't have to be using Leia for it to work) If the addon requires any settings you'd have to create and/or edit them by hand as well. Settings for well behaved addons are in userdata/addon_data/<addonid> RE: Is there a way to install add ons without using the UI? - Raman325 - 2019-02-17 I'll give it a shot, thanks! |