mesak / thingiverse image loading

// ==UserScript==
// @name         thingiverse image loading
// @namespace    https://mesak.tw
// @version      1.0
// @description  try to take over the world!
// @author       Mesak
// @match        https://www.thingiverse.com/thing:*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
     let photo_lists = document.querySelectorAll('.gallery-photo');
     [].forEach.call(photo_lists, function(list) {
         //console.log( list.dataset.medium);
         list.innerHTML = '<img class="thing-img" src="'+list.dataset.medium+'"/>';
     })
})();