我想知道这是否可行。例如,我转到一个网页,其源代码如下:
<html>
<script scr="path/file.js"></script>
</html>
然后我在这个html页面写了一个Grease monkey脚本,它将替换
<script scr="/path/file.js"></script>
到
<script scr="/path/anotherfile.js"></script>
假设&#39; anotherfile.js&#39;确实存在于服务器端。当前的html页面也会相应改变。
这可能吗?