百度统计decodeURI

try to take over the world!

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         百度统计decodeURI
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  try to take over the world!
// @author       imzhi <yxz_blue@126.com
// @match        https://tongji.baidu.com/web/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        $('#visit-page-container a.ellipsis').each(function(i, el) {
            decodeLink($(el));
        });
        $('#landing-page-container a.ellipsis').each(function(i, el) {
            decodeLink($(el));
        });
    }, 3000);

    var decodeLink = function($el) {
        $el.text(decodeURI($el.text()));
    };
})();