Last active
April 27, 2020 16:12
-
-
Save mwinckler/ef9a86cf56bf9b9fd6e1 to your computer and use it in GitHub Desktop.
Bookmarklet to rename TV show seasons in Plex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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