美文网首页VUE
使用vue dev tool调试chrome浏览器扩展的cont

使用vue dev tool调试chrome浏览器扩展的cont

作者: Linker_efcc | 来源:发表于2020-03-09 19:25 被阅读0次

    2020.12.05更新

    由于chrome CORS策略,此方法以无法使用。
    但vue-devtools目前支持在源码内直接引入连接到vue-devtools。详见:devtools readme

    // content-script.js
    
    import devtools from '@vue/devtools' // Make sure you import devtools before Vue, otherwise it might not work as expected.
    import Vue from 'vue'
    
    if (process.env.NODE_ENV === 'development') {
      devtools.connect(/* host, port */)
    }  
    

    以下为旧内容:

    1.安装vue-remote-devtools

    npm install -g @vue/devtools

    2.在终端里运行

    vue-devtools

    3.使用GET请求获取脚本并使用eval运行

    // at your content script
    const xhr = new XMLHttpRequest()
    xhr.open('GET', 'http://localhost:8098/')
    xhr.onload = function (x, e) {
      eval(x.currentTarget.responseText)
    };
    xhr.send();
    
    

    4.重新装载扩展刷新页面,效果如下

    image.png

    相关文章

      网友评论

        本文标题:使用vue dev tool调试chrome浏览器扩展的cont

        本文链接:https://www.haomeiwen.com/subject/qrkmdhtx.html