尝试将xml代码设置为仅允许单个IP地址访问ASP.Net服务器上的根文件夹和所有子文件夹。对于例如IP地址如8.8.8.8,下面的代码似乎不允许来自8.8.8.8的访问请求。授权标签中是否存在使基于IP的访问无效的内容?
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, { greeting: "hello" }, function (response) {
console.log(response.farewell);
});
});