Google Photo Gradient Remover

Remove black gradient on the top in Google Photos

// ==UserScript==
// @name         Google Photo Gradient Remover
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove black gradient on the top in Google Photos
// @author       yclee126
// @match        https://photos.google.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // TODO: get rid of the call loop
    var intv = setInterval(function() {

        // get elements
        const elems = document.querySelectorAll('[role="menubar"]');

        // set elements
        for (const elem of elems) { // don't use "in" -- it will iterate over keys.
            elem.style.setProperty('background', 'transparent');
        }

        //clearInterval(intv);
    }, 100);
})();