Last active
July 10, 2021 05:46
-
-
Save j1mmie/90d3f6e4ba85e22a02a7a16e9108dbba to your computer and use it in GitHub Desktop.
Ocarina of Amazon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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