Skip to content

Instantly share code, notes, and snippets.

@mwinckler
Last active April 27, 2020 16:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mwinckler/ef9a86cf56bf9b9fd6e1 to your computer and use it in GitHub Desktop.
Save mwinckler/ef9a86cf56bf9b9fd6e1 to your computer and use it in GitHub Desktop.
Bookmarklet to rename TV show seasons in Plex
javascript:(function() { var input = document.createElement('input'); input.setAttribute('type', 'hidden'); input.setAttribute('name', 'title'); input.setAttribute('value', prompt('New title:')); document.getElementById('lockable-summary').parentNode.appendChild(input); })();
@navels
Copy link

navels commented Nov 23, 2017

Thanks for this! Unfortunately it no longer works (for me) due to jquery not being loaded. I've written one that doesn't use jquery and tweaked the UI a bit:
https://gist.github.com/navels/13b904be70cb505b57789da9a18c99fb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment