Tampermonkey 油猴脚本例子

Posted 太晓

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tampermonkey 油猴脚本例子相关的知识,希望对你有一定的参考价值。

// ==UserScript==
// @name         数据召测
// @namespace    http://tampermonkey.net/
// @version      0.1.0303
// @description  try to take over the world!
// @author       You
// @match        http://0.0.0.0/*
// @grant        none
// ==/UserScript==

(function() {
    \'use strict\';
    console.info("油猴脚本启动");
    function init(){
        //console.info("init");
        let vbody = document.getElementsByTagName(\'body\')[0]
        let vdiv = document.createElement(\'div\')
        vdiv.setAttribute(\'id\',\'cxldiv\')
        vdiv.setAttribute(\'class\',\'col-sm-12\')
        //vbody.appendChild(vdiv)
        document.querySelector("div").appendChild(vdiv)
        vdiv.innerhtml += \'  \'
        //vdiv.innerHTML += \'<input id="cxl_input_cons_no" type="text">\'
        vdiv.innerHTML += \'<button type="button" onclick="document.myscript_selected()">选记录</button>\'
        vdiv.innerHTML += \'<button type="button" onclick="document.myscript_changeDataItem()">选数据项</button>\'
        vdiv.innerHTML += \'<button type="button" onclick="document.myscript_getData()">召测</button>\'
        vdiv.innerHTML += \'<button id="cxlbtn_save" type="button" onclick="document.myscript_saveResult()">保存结果</button>\'
        //选电表
        document.myscript_selected = function(){
            //console.info("myscript_myzc")
            //选记录
            document.getElementsByName(\'btSelectItem\')[0].click()
            //选直抄
            document.getElementsByName(\'taskKind\')[1].click()
            //存库
            document.getElementById(\'saveDb\').click()
        }
        //选数据项
        document.myscript_changeDataItem = function(){
            //console.info("myscript_changeDataItem")
            //取消正有示值
            document.getElementById(\'30901006_anchor\').click()
            //选数据项
            document.getElementById(\'30201001_anchor\').click()
            document.getElementById(\'30301001_anchor\').click()
            document.getElementById(\'30601001_anchor\').click()
        }
        //召测
        document.myscript_getData = function(){
            document.getElementById(\'dataCall\').click()
            document.querySelector("#cxlbtn_save").removeAttribute(\'disabled\')
            if (document.myjob_save){
                clearInterval(document.myjob_save)
            }
            document.myjob_save = setInterval("document.myscript_saveResult()",2000)

        }
        //保存召测结果
        document.myscript_saveResult = function(){
            console.info("myscript_saveResult")
            const result = document.getElementById(\'resultDetail\').innerHTML.replace(/\\t/g,\'\').replace(/\\s\\s/g,\'\').replace(/<tr.+?>/g,\'\\n\').replace(/<.+?>/g,\' \')
            if(result)
            {
                console.info(result)
                clearInterval(document.myjob_save)

                const cons_no = result.match(/用户编号\\s+\\d+/)[0].replace(/用户编号/g,\'cn\')
                const now = new Date().getTime()
                document.myscript_download(result, cons_no+\' \'+now+\'.txt\')
                document.querySelector("#cxlbtn_save").setAttribute(\'disabled\',\'disabled\')
            }
        }
        document.myscript_download=function(content, fileName){
            let downLink = document.createElement(\'a\')
            downLink.download = fileName
            //字符内容转换为blod地址
            let blob = new Blob([content])
            downLink.href = URL.createObjectURL(blob)
            // 链接插入到页面
            document.body.appendChild(downLink)
            downLink.click()
            // 移除下载链接
            document.body.removeChild(downLink)
        }
    }

    init()
})();

以上是关于Tampermonkey 油猴脚本例子的主要内容,如果未能解决你的问题,请参考以下文章

你竟然不装油猴插件-Chrome神器TamperMonkey

Tampermonkey (油猴Chrome扩展) 最新版使用方法

Tampermonkey油猴 Userscript 显示当前网站所有可用的UserJS脚本

Chrome的油猴Tampermonkey下载安装,以及搜索安装脚本

Userscript+ for Tampermonkey-显示当前站点所有油猴脚本

Tampermonkey油猴脚本管理插件-最强浏览器插件的安装使用全攻略