forked from octocat/Spoon-Knife
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_script.user.js
More file actions
24 lines (21 loc) · 940 Bytes
/
my_script.user.js
File metadata and controls
24 lines (21 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// ==UserScript==
// @id My_personal_script@https://github.com/bernard-williams/Spoon-Knife
// @name My personal script
// @namespace https://github.com/bernard-williams/Spoon-Knife
// @description Muj osobni testovaci script
// @author tomas.marcanik@aukro.cz
// @license GNU GPLv3
// @supportURL https://github.com/bernard-williams/Spoon-Knife
// @homepageURL https://github.com/bernard-williams/Spoon-Knife
// @downloadURL https://github.com/bernard-williams/Spoon-Knife/raw/master/my_script.js
// @updateURL https://github.com/bernard-williams/Spoon-Knife/raw/master/my_script.js
// @version 1.0
// @grant none
// @run-at document-end
// @include https://github.com/*
// @include https://www.github.com/*
// ==/UserScript==
/* global unsafeWindow */
(function(unsafeWindow) {
alert("jedu");
})(typeof unsafeWindow !== "undefined" ? unsafeWindow : window);