ddgwidth

resizes duckduckgo for smaller window widths.

  1. // ==UserScript==
  2. // @name ddgwidth
  3. // @version 0.3
  4. // @description resizes duckduckgo for smaller window widths.
  5. // @match http://duckduckgo.com/*
  6. // @match https://duckduckgo.com/*
  7. // @match http://*.duckduckgo.com/*
  8. // @match https://*.duckduckgo.com/*
  9. // @namespace https://gf.qytechs.cn/users/217495-eric-toombs
  10. // @run-at document-idle
  11. // @require https://code.jquery.com/jquery-latest.min.js
  12. // ==/UserScript==
  13.  
  14. for (t of ["html", "body"]) {
  15. $(t).map(function(i, node) {
  16. node.style.minWidth = "0";
  17. });
  18. }

QingJ © 2025

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