Greasy Fork

Greasy Fork is available in English.

微博pixiv直跳

微博北方棲姬pixiv链接自动跳转

目前为 2021-03-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         微博pixiv直跳
// @namespace    https://weibo.com/2921080027/K63K1tpyb?from=page_1005052921080027&ssl_rnd=1615665340.8435&type=comment#_rnd1615665343968
// @version      1.0
// @description  微博北方棲姬pixiv链接自动跳转
// @author       urarawin
// @sauce-code   代码来源于@北方棲姬 
// @match        *://www.bing.com/*       
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let url = document.getElementById("sb_form_q").value
    var pixiv = url.search("https://")
    if (pixiv != -1 )
      {window.location.href=url;}
  else
    {return;}
})();