弹出警告弹窗
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 弹出警告弹窗
// @author You
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @match http://tampermonkey.net/
// ==/UserScript==
(function() {
'use strict';
alert('island')
})();