snippets.zerodogg.org

Letterboxd store bookmarklet

This bookmarklet will open up the current movie on letterboxd in various stores.

Search for movie

Change the URLs array to modify which store(s) are searched.

((document) => {
const name = document.querySelectorAll(
"#featured-film-header > h1,.film-title-wrapper > a",
)[0].innerText;
const URLs = [
"https://www.platekompaniet.no/search/?filter.Facets[topcategoryname]=BLU-RAY+%26+4K&filter.Facets[topcategoryname]=DVD&q=",
"https://www.finn.no/bap/forsale/search.html?product_category=2.86.3922.100&product_category=2.86.3922.102&sort=RELEVANCE&q=",
"https://www.ebay.co.uk/sch/617/i.html?_from=R40&LH_TitleDesc=0&_sop=15&_nkw=",
];
for (const URL of URLs) {
window.open(URL + encodeURIComponent('"' + name + '"'));
}
})(document);