🏠 Home 

粘贴搜索功能

Xslist.org 粘贴搜索

// ==UserScript==
// @name         粘贴搜索功能
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Xslist.org 粘贴搜索
// @author       _mogu
// @match        https://xslist.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xslist.org
// @grant        unsafeWindow
// @run-at       document-end
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('paste', function( e ) {
unsafeWindow.$('body').addClass('function-activating');
unsafeWindow.picSearch( e.clipboardData );
}, false);
})();