Google Search Translate Button Dutch

Adds a Translate button to the Google Search page

  1. // ==UserScript==
  2. // @name Google Search Translate Button Dutch
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Adds a Translate button to the Google Search page
  6. // @author Dolorfox
  7. // @match *www.google.nl/search*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var search = document.getElementById("lst-ib").value;
  14. var url = "https://translate.google.com/#auto/nl/" + search;
  15. document.getElementById("hdtb-msb-vis").innerHTML += `<div class="hdtb-mitem hdtb-imb"><a class="q qs" href="${url}">Translate</a></div>`;
  16. })();

QingJ © 2025

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