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 <[email protected] // @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())); }; })();