Skip to content

Instantly share code, notes, and snippets.

View yorunoken's full-sized avatar
💞
gotta love life

Yoru yorunoken

💞
gotta love life
View GitHub Profile
@yorunoken
yorunoken / bookmarklet.js
Last active June 14, 2023 13:22
A bookmarklet I wrote to automatically transfer Lemmy subscriptions to other instances.
javascript: (async function () {
const currentURL = window.location.href;
const currentHostname = window.location.hostname;
if (!currentURL.includes("listing_type/Subscribed/page")) {
window.alert("Not in the current page. Redirecting..");
window.location.href = `communities/listing_type/Subscribed/page/1`;
}
const table = document.getElementById("community_table");
const anchorTags = table.getElementsByTagName("a");
const titles = [];