tranchauthanhnguyengmail.com / Demo 1

// ==UserScript==
// @name         Demo 1
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  My first script
// @author       NguyenTran
// @match        http://kenh14.vn/
// @grant        none
// ==/UserScript==

$(document).ready(function(){
    alert("hello!");
});