// ==UserScript== // @name Pagemosaic // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to replace the senstive words from web page content. // @author towerbit // @license MIT // @match https://*/* // @match http://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=microsoft.com // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; const BADWORDS="发票,手枪"; const MOSAIC = '▮▮▮▮▮▮▮▮▮▮'; const JUMP_URL = "https://cn.bing.com"; const JUMP_LIMIT = 10; var array = BADWORDS.split(","); var len = array.length; var cnt=0; for(var i=0;iJUMP_LIMIT) { //too many bad words, jump away; window.location.href=JUMP_URL; break; } else { document.title = document.title.replace(re, MOSAIC); document.body.innerHTML = document.body.innerHTML.replace(re, MOSAIC); } } })();