-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHelloWorld.user.js
28 lines (22 loc) · 930 Bytes
/
HelloWorld.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(function () {
// ==UserScript==
// @name HelloWorld
// @namespace http://localhost.localdomain
// @description JavaScript alert box saying Hello, World!
// @copyright 2007+, Marti Martz (http://userscripts.org/users/37004)
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @license (CC); http://creativecommons.org/licenses/by-nc-sa/3.0/
// @version 0.0.1
// @icon https://s3.amazonaws.com/uso_ss/icon/13701/large.png
// @include http://www.example.com/*
// @include http://www.example.net/*
// @include http://www.example.org/*
// ==/UserScript==
alert('Hello, World!');
/**
* Testing out to see if this auto-syncs with repo webhook configured to
* `application/x-www-form-urlencoded` since this type changed
* from `application/vnd.github.v3+form` with
* `push event only`, `no secret` and `verify SSL`
*/
})();