// ==UserScript== // @name Reddit on Google Search // @version 1.0.5 // @description Adds a button to search Reddit via Google Search // @author Alexyoe // @namespace https://github.com/Alexyoe/Reddit-on-Google-Search // @license MIT // @include http*://www.google.*/search* // @include http*://google.*/search* // @run-at document-end // @downloadURL none // ==/UserScript== // Settings const iconVisible = true; const nameVisible = true; const btnPosition = "end"; // Start or End // Start Code const queryRegex = /q=[^&]+/g; const siteRegex = /\+site(?:%3A|\:).+\.[^&+]+/g; const redditUrl = "+site%3Areddit.com"; let redditIcon = ''; const isImageSearch = /[?&]tbm=isch/.test(location.search); // Allow importing SVG if (typeof trustedTypes !== "undefined") { const policy = trustedTypes.createPolicy("html", { createHTML: (input) => input, }); redditIcon = policy.createHTML(redditIcon); } // Main function runs on load (function () { // Create the main link element const el = document.createElement("a"); el.className = isImageSearch ? "NZmxZe" : "nPDzT T3FoJb"; // Create the div element for the text const mainDiv = document.createElement("div"); mainDiv.className = "GKS7s"; // Create the span to wrap the icon and title const span = document.createElement("span"); span.style.cssText = "display:inline-flex;gap:5px;"; span.className = isImageSearch ? "m3kSL" : "FMKtTb UqcIvb"; // create the div to hold our SVG const iconDiv = document.createElement("div"); iconDiv.style.cssText = nameVisible ? "height:16px;width:16px;display:block;fill:white;" : "height:16px;width:16px;display:block;margin:auto;fill:white;"; iconDiv.innerHTML = redditIcon; // Create the text node to hold the button title const textNode = document.createTextNode("Reddit"); // Add iconDiv to the span element if (iconVisible) { span.appendChild(iconDiv); } // Add textNode to the span element if (nameVisible) { span.appendChild(textNode); } // Add span to the mainDiv mainDiv.appendChild(span); // Add mainDiv to the main link element el.appendChild(mainDiv); // Add site:reddit.com to the query el.href = window.location.href.replace(queryRegex, (match) => match.search(siteRegex) >= 0 ? match.replace(siteRegex, redditUrl) : match + redditUrl ); // Insert the link into Google search if (isImageSearch) { let menuBar = document.querySelector(".T47uwc"); menuBar.insertBefore(el, menuBar.children[menuBar.childElementCount - 1]); } else { let menuBar = document.querySelectorAll(".IUOThf")[0]; switch (btnPosition) { case "start": menuBar.insertBefore(el, menuBar.children[0]); break; case "end": menuBar.appendChild(el); break; default: menuBar.appendChild(el); break; } } // Fix Sizing const buttonBox = document.querySelector(".xhjkHe"); buttonBox.style.width = "auto"; })();