Google Search - Always Show Image Size

Forces Google Image Search to display sizes for all the images by default.

当前为 2018-04-27 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Google Search - Always Show Image Size
  3. // @name:fr Google Search - Toujours afficher Taille de l'image
  4. // @name:de Google-Suche - Bildgröße immer anzeigen
  5. // @name:ru Поиск Google - всегда показывать размер изображения
  6. // @name:es Google Búsqueda - Mostrar Siempre Tamaño Imagen
  7. // @description Forces Google Image Search to display sizes for all the images by default.
  8. // @description:fr Force la recherche d'images Google pour afficher les tailles de toutes les images par défaut.
  9. // @description:de Erzwingt Google Bildersuche standardmäßig die Anzeige von Größen für alle Bilder.
  10. // @description:ru Заставляет Google Image Search отображать размеры для всех изображений по умолчанию.
  11. // @description:es Obliga a Google Image Search a mostrar tamaños para todas las imágenes de forma predeterminada.
  12. // @namespace iamMG
  13. // @license MIT
  14. // @version 1.0.1
  15. // @icon https://i.imgur.com/Xy9vHSR.png
  16. // @include /(http|https):\/\/www\.google\.(ca|co\.in|co\.uk|com|com\.br|de|es|fr|it|pl|ru)\/search\?/
  17. // @author iamMG
  18. // @run-at document-start
  19. // @grant none
  20. // @copyright 2018, iamMG (https://openuserjs.org/users/iamMG)
  21. // ==/UserScript==
  22.  
  23. var CurrentUrlSearch = location.search;
  24. // Confirms whether it is Image Search or not. Also, won't run if Sizes are already being displayed.
  25. if (/&tbm=isch/.test(CurrentUrlSearch) && !/tbs=imgo:1/.test(CurrentUrlSearch)) {
  26. var newURL = window.location.protocol + "//" + window.location.host + window.location.pathname + CurrentUrlSearch + "&tbs=imgo:1";
  27. window.location.replace(newURL);
  28. return;
  29. }
  30. /* This is my first script. Do leave a constructive feedback. :) */