Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tomer-ben-david/72f3cc7752d6debee8327071f828f29a to your computer and use it in GitHub Desktop.
Save tomer-ben-david/72f3cc7752d6debee8327071f828f29a to your computer and use it in GitHub Desktop.
snippet tampermonkey repl
// ==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