Skip to content

Instantly share code, notes, and snippets.

@j1mmie
Last active July 10, 2021 05:46
Show Gist options
  • Save j1mmie/90d3f6e4ba85e22a02a7a16e9108dbba to your computer and use it in GitHub Desktop.
Save j1mmie/90d3f6e4ba85e22a02a7a16e9108dbba to your computer and use it in GitHub Desktop.
Ocarina of Amazon
// ==UserScript==
// @name Ocarina of Amazon
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author @jimmieverse
// @match https://www.amazon.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
var iframe = document.createElement('iframe')
iframe.setAttribute('style', 'position: absolute; top: 0; left: 0; width: 1px; height: 1px; z-index: -100')
iframe.setAttribute('src', 'https://www.youtube.com/embed/VLAekpsclQY?autoplay=1')
iframe.setAttribute('allow', 'autoplay')
document.body.appendChild(iframe)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment