Skip to content

Instantly share code, notes, and snippets.

View fater's full-sized avatar
🎯
Focusing

Evgenii Chaikin fater

🎯
Focusing
View GitHub Profile
@fater
fater / tampermonkey__bybit__hide-announcement.js
Last active April 26, 2025 15:55
Tampermonkey: Hide bybit annoying
// ==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==
@fater
fater / testtree.html
Created September 15, 2016 09:34
Create Tree view structure with Selected and Available items
<!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>
@fater
fater / adv3.user.js
Created October 2, 2015 20:47 — forked from arnauddelattre/adv3.user.js
adv3.user.js
// ==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");