🏠 Home 

คุณต้องเข้าสู่ระบบหรือลงทะเบียนก่อนดำเนินการต่อ

Vector Layout For Wikipedia

This script appends ?useskin=vector to any Wikipedia Wiki page you visit. This returns the site to its old default desktop layout before the 2023 redesign.

< Feedback on Vector Layout For Wikipedia

Review: Good - script works

§
Posted: 19-01-2023

I like this approach. I think it can be simplified somewhat by using more of the Location object's capabilities, along with URLSearchParams:

if( ! document.location.search.includes("useskin=vector") ) {
let searchParams= new URLSearchParams(document.location.search);
searchParams.append('useskin', 'vector');
document.location= document.location.pathname + "?" + searchParams.toString() + document.location.hash
}

Post reply

Sign in to post a reply.