chrome 替换network中的返回内容,用以跨步调试

  • 在开发调试中,有时候,某个接口,或者文件返回内容有问题,但线上的文件没问题。这时候就可以通过更改network中返回内容来实现跨步调试了。
  • test.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>chrome api,js override</title>
</head>
<body>
    <style>
        .one{
            width:100px;
            height:100px;
            margin:auto;
            background-color: aqua;
        }
    </style>
    <script src='./a.js'></script>
    <div class="one">
        aaa
    </div>

</body>
</html>
  • a.js
console.log('I am a js');
  • 这个初始操作,有设置chrome读取overrides文件目录的设置。


  • 在浏览器编辑后,所创建chrome存储文件的文件夹内的文件也跟着变化。如需重新定义chrome存储替换文件夹,老的文件夹删除再重新设定。
posted @ 2024-12-02 19:46  盘思动  阅读(15)  评论(0编辑  收藏  举报