tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

artwork-generator.html (301B)


      1 <!DOCTYPE html>
      2 <title>MediaImage</title>
      3 <script>
      4 function createArtworkFromURLs(sources) {
      5  let artwork = [];
      6  for (const source of sources) {
      7    artwork.push({
      8      src: source
      9    });
     10  }
     11 
     12  let metadata = new MediaMetadata({
     13    artwork: artwork
     14  });
     15  return metadata.artwork;
     16 }
     17 
     18 </script>