Skip to content

Instantly share code, notes, and snippets.

@heptal
Last active August 12, 2019 21:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heptal/8c8c90cb67bfe17e23a38c721ae64331 to your computer and use it in GitHub Desktop.
Save heptal/8c8c90cb67bfe17e23a38c721ae64331 to your computer and use it in GitHub Desktop.
Bing Image Search Thumb Full-Rezifier
// ==UserScript==
// @name Bing Image Thumb Lazarusizer
// @namespace BingThumbnailLazarus
// @version 0.1
// @description Full-rez the image src attribute for preview images in BIS results - just right-click and open/save
// @author heptal
// @downloadURL https://gist.github.com/heptal/8c8c90cb67bfe17e23a38c721ae64331/raw/eee850139b1d9c9d6cc1fafb1506ea6cdaa34193/bing-full-image-preview-replace.user.js
// @updateURL https://gist.github.com/heptal/8c8c90cb67bfe17e23a38c721ae64331/raw/eee850139b1d9c9d6cc1fafb1506ea6cdaa34193/bing-full-image-preview-replace.user.js
// @match https://*.bing.com/images/search*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.iusc').forEach(a => { a.querySelector('img').src=JSON.parse(a.getAttribute('m')).murl} )
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment