Right now, if I want to add every public indexer to my list of indexers, I have to hit Add Indexer, then [+] for every single one. I'd like to be able to select multiple, then add them all at once. I can think of two different ways to do this:
As a workaround, it would be cool if there were a jackett config somewhere with all of the public indexers already added that I could use as a starter. (Basically just an archive of the --DataFolder that I could point my daemon to.)
So, I just manually added them all. It took a long time, so to help others trying to do the same thing, I'm posting the resulting jackett --DataFolder here.
https://toombs.tk/jackett-all-public-indexers.tar.xz
I hope this saves some people's time.
hello
u can use this method, in browser console.
document.querySelectorAll("button.btn.btn-success.btn-xs.indexer-add").forEach(m=>{
m.click();
})
Similar to #3274
Most helpful comment
hello
u can use this method, in browser console.