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 Hide ads on ByBit | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Hide annoyig announcement on the top of the page | |
// @author You | |
// @match https://www.bybit.com/* | |
// @icon https://www.bybit.com/common-static/fhs/bybit-home-new/favicon.ico | |
// @grant none | |
// ==/UserScript== |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<script | |
src="https://code.jquery.com/jquery-2.2.4.min.js" | |
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" | |
crossorigin="anonymous"></script> | |
</head> |
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 Example from http://stackoverflow.com/q/6834930 | |
// @version 1.3 | |
// @namespace http://www.abrutis.com/ | |
// @description An example, adding a border to a post on Stack Overflow. | |
// @include http://www.abrutis.com/* | |
// ==/UserScript== | |
function addJQuery(callback) { | |
var script = document.createElement("script"); |