Skip to content

Instantly share code, notes, and snippets.

View FrAllard's full-sized avatar

Francois Allard FrAllard

  • Francois Allard Services Informatiques
  • Quebec, Canada
View GitHub Profile
@FrAllard
FrAllard / delete.js
Last active April 2, 2020 15:39 — forked from ojame/delete.js
Delete all movies that are "Not Monitored" in Radarr. Mass/bulk deleting.
// Go to Radarr and click 'settings' => 'general'.
// Open the JavaScript Console in Google Chrome (View => Developer => Javascript Console)
// Past the following in. Hit enter and away you go.
const key = document.getElementsByClassName('x-api-key')[0].value;
if (!key) {
alert('Navigate to /settings/general and run again');
}