Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Button to open all indexers in a new window or tabs #1837

Open
1 task done
onedr0p opened this issue Aug 18, 2023 · 5 comments
Open
1 task done

Button to open all indexers in a new window or tabs #1837

onedr0p opened this issue Aug 18, 2023 · 5 comments
Labels
Status: Help Wanted Help Wanted, no immediate plans for effort on this Status: Needs Triage New Issue needing triage Type: Feature Request Issue is a feature request.

Comments

@onedr0p
Copy link
Contributor

onedr0p commented Aug 18, 2023

Is there an existing issue for this?

  • I have searched the existing open and closed issues

Is your feature request related to a problem? Please describe

Indexers require you to log in once in awhile to keep your accounts active.

Describe the solution you'd like

I would like a way to open all indexers in a new browser window or tab

Describe alternatives you've considered

I am currently using a Chrome bookmarklet

javascript: (function openLinksInNewTab() {
    new Set(
      Array.prototype.filter
        .call(document.querySelectorAll('a[title="Website"][class*="IndexerIndexRow-externalLink"]'), function (a) {
          return a.tagName.toLowerCase() !== "link" && a.href[0] !== "#";
        })
        .map(function (a) {
          return a.href;
        })
    ).forEach(function (a) {
      window.open(a, "_blank");
    });
})();

Anything else?

The button could be placed near here

image
@onedr0p onedr0p added Status: Needs Triage New Issue needing triage Type: Feature Request Issue is a feature request. labels Aug 18, 2023
@mynameisbogdan mynameisbogdan added the Status: Help Wanted Help Wanted, no immediate plans for effort on this label Aug 18, 2023
@Qstick
Copy link
Contributor

Qstick commented Aug 19, 2023

Is this really something we want?

@Qstick
Copy link
Contributor

Qstick commented Sep 4, 2023

Doesn't a query keep them active?

@onedr0p
Copy link
Contributor Author

onedr0p commented Sep 4, 2023

For those that use only the API, I don't think so. For those that use session/cookie auth, maybe?

@kshannoninnes
Copy link

Would it be better to have an option to open selected indexers, which allows both the option to open everything, as well as the option to only open a few that you know require a website visit?

@mynameisbogdan
Copy link
Contributor

Is this really something we want?

I'm a nay on this too, but I would want something to ping my indexers from time to time without the Prowlarr UA. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: Help Wanted Help Wanted, no immediate plans for effort on this Status: Needs Triage New Issue needing triage Type: Feature Request Issue is a feature request.
Projects
None yet
Development

No branches or pull requests

4 participants