小鹅通专栏优化

设置 title

// ==UserScript==
// @name         小鹅通专栏优化
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  设置 title
// @require         http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @author       techqu
// @match        https://apppukyptrl1086.pc.xiaoe-tech.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $(function () {

     var timer = setInterval(function(){hide_cover(timer)},2000);

     function hide_cover(timer) {
     
           var title =  $('.detail-header-right-title-main').text();
	       $("title").html(title);
             
       }

     });


})();