Google Search - Always Show Image Size

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

Από την 26/04/2018. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==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.0
// @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==
var CurrentUrlSearch = location.search;
/* Tests that "&tbm=isch" exists in URL (confirms whether it is Image Search or not). Won't run if Sizes are already being displayed */
if (/&tbm=isch/.test(CurrentUrlSearch) && !/tbs=imgo:1/.test(CurrentUrlSearch)) {
  var newURL = window.location.protocol + "//" + window.location.host + window.location.pathname + CurrentUrlSearch + "&tbs=imgo:1";
  window.location.replace(newURL);
  return;
}
/* This is my script. Do leave a constructive feedback. :) */