Greasy Fork 支持简体中文。

Gappy's Google Search

Context menu to let Gappy search Google

// ==UserScript==
// @name            Gappy's Google Search
// @description     Context menu to let Gappy search Google
// @version         0.1
// @author          floppycopier
// @include         *
// @grant           GM_openInTab
// @run-at          context-menu
// @license         MIT
// @namespace https://greasyfork.org/users/1147279
// ==/UserScript==]]

(() => {
  const highlighted = window.getSelection().toString();
  window.open(`https://google.com/search?q=${highlighted}`, '_blank');
})();