油猴脚本收集

// ==UserScript==

// @name        校园网自动登陆

// @namespace    http://tampermonkey.net/

// @version      0.1

// @description  try to take over the world!

// @author      You

// @match        http://172.16.8.8/srun_portal_pc?ac_id=1&ip=10.128.214.220&theme=basic2

// @grant        none

// ==/UserScript==

(function() {

    'use strict';

    // Your code here...

    document.getElementById("username").value='******';//自动输入账号

    document.getElementById("password").value='******';//自动输入密码

    document.getElementById("domain").value='@cmcc';//切换网络宽带

    document.getElementById("login").click();//自动点击登陆

})();



弹窗和悬浮窗例子

// ==UserScript==

// @name        界面

// @namespace    http://tampermonkey.net/

// @version      0.1

// @description  try to take over the world!

// @author      You

// @match        https://*/*

// @grant        unsafeWindow

// @require      https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js

// @include      @

// ==/UserScript==

(function() {

    'use strict';

    alert("插件正在加载,请耐心等待5秒");

    setTimeout(function(){

$("body").append("

hhhh
");

    },4000);

})();



游览器安装 暴力猴插件,就可以使用油猴脚本


油猴函数说明

https://blog.csdn.net/qq_37338627/article/details/90214394?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase

你可能感兴趣的:(油猴脚本收集)