Chrome chrome-扩展的 Vue 调试器?
Chrome Vue debugger for chrome-extensions?
我正在调试从文件夹加载的解压扩展。页面URL为chrome-extension://op...
,页面使用Vue。 Vue chrome 调试器扩展显示“未检测到 Vue JS”。我为扩展启用了“允许访问文件 URLs”,但它仍然无法检测到 Vue JS。 chrome-extension
URLS 真的无法访问 Vue JS 调试器吗?如果是这样,我如何为扩展启用 Vue 调试器?
你应该 manifest.json
看起来像这样
"permissions": [
"http://myapp.appspot.com/*",
"http://localhost/*"
]
如本回答所示:
我正在调试从文件夹加载的解压扩展。页面URL为chrome-extension://op...
,页面使用Vue。 Vue chrome 调试器扩展显示“未检测到 Vue JS”。我为扩展启用了“允许访问文件 URLs”,但它仍然无法检测到 Vue JS。 chrome-extension
URLS 真的无法访问 Vue JS 调试器吗?如果是这样,我如何为扩展启用 Vue 调试器?
你应该 manifest.json
看起来像这样
"permissions": [
"http://myapp.appspot.com/*",
"http://localhost/*"
]
如本回答所示: