SOULJA BOY TELL EM

Google "do a barrel roll" for an awesome surprise

// ==UserScript==
// @name        SOULJA BOY TELL EM
// @description Google "do a barrel roll" for an awesome surprise
// @namespace   Violentmonkey Scripts
// @match       https://www.google.com/search*
// @grant       none
// @version     1.1
// @author      ben_p_06
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Get the search query parameter
    const urlParams = new URLSearchParams(window.location.search);
    const query = urlParams.get("q");

    // Check if the query matches "do a barrel roll" (case insensitive)
    if (query && query.toLowerCase() === "do a barrel roll") {
        window.location.href = "https://youtu.be/8UFIYGkROII?t=15";
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址