Skip to content

Instantly share code, notes, and snippets.

View jordan0496's full-sized avatar

Jordan jordan0496

View GitHub Profile
@jordan0496
jordan0496 / unrate.js
Last active August 17, 2026 22:43
Remove rating from all Letterboxd films
(async() => {
const csrf = ''; // Fill in before running
const divs = document.querySelectorAll('#content > div > div > section > ul > li > div[data-rate-action]');
for (const div of divs) {
const action = div.getAttribute('data-rate-action');
if (!action) continue;
const url = action.startsWith('/') ? action : `/${action}`;
const body = new URLSearchParams({rating: 0, __csrf: csrf}).toString();