Skip to content

Instantly share code, notes, and snippets.

View Tetrax-10's full-sized avatar

Raghavan Tetrax-10

  • Chennai
View GitHub Profile
@Tetrax-10
Tetrax-10 / tmdbAnyBackdropAsListCover.js
Last active May 31, 2025 22:17
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(
@Tetrax-10
Tetrax-10 / clearTmdbWatchlist.js
Last active April 8, 2025 20:56
To change your TMDB list's cover to your desired backdrop, open the DevTools Console on your lists page and run this code.
document.querySelectorAll(`.details .title a[href^="/movie"], .details .title a[href^="/tv"]`).forEach(async (titleElement) => {
const titleType = titleElement.href.split("/")[3]
const titleId = titleElement.href.split("/")[4]
const rawres = await fetch(`https://www.themoviedb.org/${titleType}/${titleId}/toggle-list-item?translate=false`, {
method: "PUT",
headers: {
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
},
body: "type=watchlist",