Lazily loads images, iframes, and videos on websites.
// ==UserScript==
// @name Lazy Load Images and Videos
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Lazily loads images, iframes, and videos on websites.
// @author You
// @match *://*/*
// @grant none
// @require https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/plugins/unveilhooks/ls.unveilhooks.min.js
// ==/UserScript==
(function() {
'use strict';
// lazysizes will automatically initialize itself
})();