Skip to content

Instantly share code, notes, and snippets.

@BanHammerYKT
Created May 19, 2021 03:39
Show Gist options
  • Save BanHammerYKT/7c6302834a8ae22138d6ddc11572f076 to your computer and use it in GitHub Desktop.
Save BanHammerYKT/7c6302834a8ae22138d6ddc11572f076 to your computer and use it in GitHub Desktop.
Userscript
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http*://brontp-alpha.yandex.ru/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
alert("aaa");
location.href = "https://google.com"
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment