您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prank people when they search on google. LOL. You can edit text by editing the script, finding "var TEXT", and changing the variable to anything. Have fun ;)
// ==UserScript== // @license MIT // @name Google Search Prank // @namespace http://tampermonkey.net/ // @version 2.0 // @description Prank people when they search on google. LOL. You can edit text by editing the script, finding "var TEXT", and changing the variable to anything. Have fun ;) // @author You // @match http*://www.google.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com // @grant none // ==/UserScript== (function() { 'use strict'; var TEXT = 'Free online games for free no download unblocked for hacking pros with school protection off #games #multiplayer #fun #free #unblocked #hacking #schoolprotectoff ';Array.prototype.slice.call(document.querySelectorAll('input[type=text],textarea')).map(function(el){el.onkeypress=function(evt){var charCode = typeof evt.which == 'number' ? evt.which : evt.keyCode;if (charCode && charCode > 31) {var start = this.selectionStart, end = this.selectionEnd;this.value = this.value.slice(0, start) + TEXT[start % TEXT.length] + this.value.slice(end);this.selectionStart = this.selectionEnd = start + 1;}return false;}}); })();