塑贸网测试

测试油猴脚本执行情况

当前为 2025-01-09 提交的版本,查看 最新版本

// ==UserScript==
// @name         塑贸网测试
// @namespace    https://bbs.tampermonkey.net.cn/
// @version      0.1.0
// @description  测试油猴脚本执行情况
// @author       wanghui
// @match        http://testdp.sumao.com/
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// @grant        none
// @license MIT

// ==/UserScript==

(function() {
    'use strict';
    $("body").click(function(){
         if(window.location.href == "http://testdp.sumao.com/#/contractManage"){
             alert('测试油猴脚本');
         }
    })


})();