// ==UserScript==
// @name 谭周强
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 第一个脚本
// @author tan
// @match *://*.zhihu.com/*
// @icon none
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("hello,word!");
})();