Last active
June 9, 2020 03:42
-
-
Save diaolizhi/b68111e26d726bc499aec1c3b0634cb3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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