Jackett: [feature request] multiple indexer add

Created on 20 Jan 2019  路  3Comments  路  Source: Jackett/Jackett

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:

  1. Filter on "public" or some other kind of criteria, and have an "add all" button I can then hit.
  2. Have a checkbox column that I can use to select multiple, then hit an "add all" button.

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.)

Enhancement Web UI

Most helpful comment

hello
u can use this method, in browser console.

document.querySelectorAll("button.btn.btn-success.btn-xs.indexer-add").forEach(m=>{
    m.click();
})

All 3 comments

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

Was this page helpful?
0 / 5 - 0 ratings