Skip to content

Instantly share code, notes, and snippets.

@diaolizhi
Last active June 9, 2020 03:42
Show Gist options
  • Save diaolizhi/b68111e26d726bc499aec1c3b0634cb3 to your computer and use it in GitHub Desktop.
Save diaolizhi/b68111e26d726bc499aec1c3b0634cb3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name skip weibo guide
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 跳过微博向导
// @author zedlz
// @match https://weibo.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict'
const url = window.location.href
console.log(url)
if (url === 'https://weibo.com/nguide/interests') {
window.location.href = 'https://weibo.com';
}
// alert(url);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment