Forces Google Image Search to display sizes for all the images by default.
当前为
// ==UserScript==
// @name Google Search - Always Show Image Size
// @name:fr Google Search - Toujours afficher Taille de l'image
// @name:de Google-Suche - Bildgröße immer anzeigen
// @name:ru Поиск Google - всегда показывать размер изображения
// @name:es Google Búsqueda - Mostrar Siempre Tamaño Imagen
// @description Forces Google Image Search to display sizes for all the images by default.
// @description:fr Force la recherche d'images Google pour afficher les tailles de toutes les images par défaut.
// @description:de Erzwingt Google Bildersuche standardmäßig die Anzeige von Größen für alle Bilder.
// @description:ru Заставляет Google Image Search отображать размеры для всех изображений по умолчанию.
// @description:es Obliga a Google Image Search a mostrar tamaños para todas las imágenes de forma predeterminada.
// @namespace iamMG
// @license MIT
// @version 1.1.1
// @icon https://i.imgur.com/Xy9vHSR.png
// @include /(http|https):\/\/www\.google\.(ca|co\.in|co\.uk|com|com\.br|de|es|fr|it|pl|ru)\/search\?/
// @author iamMG
// @run-at document-start
// @grant none
// @copyright 2018, iamMG (https://openuserjs.org/users/iamMG)
// ==/UserScript==
if (/&tbm=isch/.test(location.search) && !/tbs=imgo:1/.test(location.search)) {
window.location.replace(window.location.protocol + "//" + window.location.host + window.location.pathname + location.search + "&tbs=imgo:1");
}