Recent bookmarks
-
Temporary Change Skin on Any page with a Bookmarklet by ElectricAlice
Fandoms: Fandom - Fandom
21 Feb 2022
Tags
Summary
This little Bookmarklet allows you to change the skin of the current page you are on with one click. It works on mobile as well
Series
- Part 2 of Scripts for Ao3
Bookmarked by Kurroh
18 Feb 2026
Bookmarker's Notes
javascript: (function() {let skin = 929;let url = new String(window.location);let b = url.split("#");let a = 'site_skin=';if (url.includes("?")) {a = '&' + a;} else {a = '?' + a;};window.location = b[0] + a + skin;})()

