1. 程式人生 > >油猴指令碼

油猴指令碼

goobai+
在這裡插入圖片描述

// ==UserScript==
// @name         goobai+
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
function googleIt() {
    var
searchText = document.querySelector('#kw').value; location.href = getGoogleUrl(searchText); } function getGoogleUrl(searchText) { return 'https://www.google.com/search?q=' + searchText; } // Your code here... $('#su').after('<input type="button" id="google" value="Google一下" class="btn self-btn bg s_btn" style="background-color:grey;" />'
); $("#google").click(function() { googleIt(); }); })();

在這裡插入圖片描述
在這裡插入圖片描述
1.0 版。自己碼的程式碼,安裝後手動輸入使用者名稱和密碼!!

// ==UserScript==
// @name         汕大上網直通車自動登陸
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  這是吾本虛無開發的汕大自動登入外掛,請登入http://a.stu.edu.cn/
// @author       [email protected]
// @match        http://a.stu.edu.cn/*
// @grant none // ==/UserScript== (function() { 'use strict'; document.getElementById("password_name").value='使用者名稱';//請手動輸入! document.getElementById("password_pwd").value='密碼'; window.setTimeout(function() {var LoginButton = $('<input class="btnStyle" id="password_submitBtn" onclick="onPwdLogin();" type="button" value="登入 ( Login )">'); LoginButton.click(); }, 100); // Your code here... })();