网页问候者

每打开一个网页就给你最亲切的问候

// ==UserScript==
// @name         网页问候者
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  每打开一个网页就给你最亲切的问候
// @author       KZyao
// @include      *
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    alert('hello mother fucker!!!')
    // Your code here...
})();