Skip to content

Instantly share code, notes, and snippets.

@Tetrax-10
Last active September 22, 2025 13:53
Show Gist options
  • Save Tetrax-10/a320037bc7be26121aa29b3f2260d9c8 to your computer and use it in GitHub Desktop.
Save Tetrax-10/a320037bc7be26121aa29b3f2260d9c8 to your computer and use it in GitHub Desktop.
To change your TMDB list's cover to your desired backdrop, open the DevTools Console on your lists page and run this code.
fetch("https://www.themoviedb.org/list/8283452", { // Replace with your TMDB list ID
method: "PUT",
credentials: "include",
headers: {
Accept: "application/json, text/javascript, */*; q=0.01",
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
},
body:
"data=" +
encodeURIComponent(
JSON.stringify({
backdrop_path: "/900tHlUYUkp7Ol04XFSoAaEIXcT.jpg", // Replace with your desired backdrop image path (from TMDB)
})
),
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment