location
Syntax
location: ["](url)["] [every (time)] [after (time)];
This command does a hard redirect of the current page to the specified URL. Optional double-quotes surround the URL.
The following example redirects the current page to an outside URL:

#mdnLink:click {
location: "https://developer.mozilla.org/en-US/docs/Web/";
}
Note: It runs a Javascript document.location.href on the current document, or tries to do it on the target document if the target is an iframe.
For more details on document.location.href, see here:
https://developer.mozilla.org/en-US/docs/Web/API/Document/location