Skip to content

Instantly share code, notes, and snippets.

@dhaigh
Created March 11, 2023 01:35
Show Gist options
  • Save dhaigh/de36a208bc5bd7067e1b2c8211e19cec to your computer and use it in GitHub Desktop.
Save dhaigh/de36a208bc5bd7067e1b2c8211e19cec to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name lit.dev script
// @version 0.1
// @description Redirect lit.dev pages to new docs
// @match *://*.lit.dev/*
// ==/UserScript==
(function() {
'use strict';
console.log('lit.dev script running, redirecting from old docs...');
const banner = document.getElementsByTagName('litdev-banner')[0];
if (banner?.textContent.includes('older version')) {
const link = banner.getElementsByTagName('a')[0];
window.location.href = link.href;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment