Greasy Fork is available in English.
読み込むだけ
// ==UserScript==
// @name Gallery loader
// @namespace なのでありまする
// @version 168
// @description 読み込むだけ
// @author umaimann
// @license MIT
// @match https://www.google.*/*
// @run-at document-end
// @grant none
// @noframes
// ==/UserScript==
(function(){
var script = document.createElement('script');
script.src = 'https://greasyfork.org/scripts/581568/1845201/NTE_background_gallery_1-7.js';
script.onload = function(){ console.log('NTE background gallery loaded'); };
document.head.appendChild(script);
})();