Google搜索网址还原/Change Google URL back

将Google搜索结果隐藏不显示的url还原,让其继续显示。

  1. // ==UserScript==
  2. // @name Google搜索网址还原/Change Google URL back
  3. // @version 1.0.3
  4. // @icon https://www.iconfinder.com/icons/682665/download/png/32
  5. // @description 将Google搜索结果隐藏不显示的url还原,让其继续显示。
  6. // @author Mrxn
  7. // @homepage https://mrxn.net/
  8. // @namespace http://tampermonkey.net/
  9. // @include /(http|https):\/\/www\.google\.(ca|co\.in|co\.uk|com|com\.br|de|es|fr|it|pl|ru)\/search\?/
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15. Array.from(document.querySelectorAll('cite')).forEach(el => el.textContent = el.parentElement.parentElement.href);
  16. // forEach method, could be shipped as part of an Object Literal/Module
  17. var forEach = function (array, callback, scope) {
  18. for (var i = 0; i < array.length; i++) {
  19. callback.call(scope, i, array[i]); // passes back stuff we need
  20. }
  21. };
  22. // optionally change the scope as final parameter too, like ECMA5
  23. var all_cites = document.querySelectorAll('cite');
  24. forEach(all_cites, function (index) {
  25. all_cites[index].setAttribute("style", "word-break: break-word; white-space: pre-wrap;display: inline-block;");
  26. })
  27. })();

QingJ © 2025

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