Created
January 28, 2020 08:12
-
-
Save tomer-ben-david/72f3cc7752d6debee8327071f828f29a to your computer and use it in GitHub Desktop.
snippet tampermonkey repl
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 Interview Run Code | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include https://repl.it/* | |
// @include http://tomer-test-public.s3-website-us-west-2.amazonaws.com/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-3.3.1.min.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
console.log("hey there"); | |
$("#page > div > div > div > div:nth-child(1) > div > a > img").hide(); | |
$("#page > div > div > div > div:nth-child(1) > div > div.jsx-3113129934.lite-header-right > a > img").hide(); | |
$("#page > div > div > div > div:nth-child(1) > div > div.jsx-3113129934.lite-header-right > a").hide(); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment