我的朋友要求我这样做。
他需要阻止他的孩子访问某些网站。
他安装了 chrome 的篡改猴子。我必须在 tamper-monkey 中制作一个脚本,这样当它到达网站时,它会改变网页内容。
源代码是:
// ==UserScript==
// @name My Fancy New Userscript
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match http://www.harmful-website.com/*
// @copyright 2012+, You
// ==/UserScript==
document.write("<b>You are not allowed to visit this site</b>");
此脚本仅在网站加载完毕后才有效。但是他的孩子在中间停止了网站的加载,他们可以查看其中的一部分。
甚至document.onload=function(){document.write("...");}
在加载后工作。有没有办法让脚本在加载文档之前运行,即在地址栏上键入网址或单击超链接之后立即运行。