Greasy Fork is available in English.

Google Search

Google Search Set

  1. // ==UserScript==
  2. // @name Google Search
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Google Search Set
  6. // @author You
  7. // @include *
  8. // @run-at context-menu
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. let link=`https://www.google.com/search?q=`;
  14. const event = new Event('cliplink');
  15. event.data={link};
  16. document.dispatchEvent(event);
  17. })();