Search Engine String Helper for Firefox Mobile

1/9/2024, 2:10:22 PM

当前为 2024-01-09 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Search Engine String Helper for Firefox Mobile
  3. // @namespace Violentmonkey Scripts
  4. // @match http*://*/*
  5. // @license GPL3
  6. // @grant GM_setClipboard
  7. // @version 1.0
  8. // @author sonofevil
  9. // @description 1/9/2024, 2:10:22 PM
  10. // ==/UserScript==
  11.  
  12. if (document.URL.includes("sqph")) {
  13. GM_setClipboard(document.URL.replace("sqph","%s"));
  14. }