绯月ScarletMoon-动画资源共享区 搜索-自动跳转搜索页 2020年8月16日

VCB-Studio搜索 自动跳转搜索页

// ==UserScript==
// @name         绯月ScarletMoon-动画资源共享区 搜索-自动跳转搜索页 2020年8月16日
// @namespace    waecy
// @version      0.0.1
// @description  VCB-Studio搜索 自动跳转搜索页
// @namespace    https://greasyfork.org/zh-CN/scripts/405283
// @author       waecy
// @icon         https://gitee.com/miaolapd/KF_Online_Assistant/raw/master/icon.png
// @require      https://cdn.staticfile.org/jquery/2.1.4/jquery.min.js
// @include      *://bbs.9moe.com/thread.php?fid=92&page=8&keyword=*
// @include      *://bbs.fygal.com/thread.php?fid=92&page=8&keyword=*
// @include      *://bbs.bakabbs.com/thread.php?fid=92&page=8&keyword=*
// @include      *://kf.miaola.info/thread.php?fid=92&page=8&keyword=*
// @grant        GM_xmlhttpRequest
// @grant        GM_setValue
// @run-at       document-start
// @license      MIT License
// ==/UserScript==
$(document).ready(function() {

      // 获取url参数
      var urlKey = getQueryVariable('keyword');

        // 判断参数是否有值
        if (urlKey) {
          // 解码赋值
          urlKey = decodeURIComponent(urlKey);

          // 搜索框赋值
          $('input[name="keyword"]').val(urlKey);

          // 点击搜索
          $('input[name="submit"]').click();

          // 过1秒自动关闭页面
            setTimeout(function(){
                 window.close();
            },0);

        }
//获取url参数[得到url参数]为对象
function getQueryVariable(variable) {
    var query = window.location.search.substring(1);
    var vars = query.split("&");
    for (var i = 0; i < vars.length; i++) {
        var pair = vars[i].split("=");
        if (pair[0] == variable) {
            return pair[1];
        }
    }
    return (false);
}
})