我正在使用chrome.tabs.captureVisibleTab
捕获扩展程序中的屏幕截图。直到最近,这对所有URL都有效。我猜转折点是Chrome67。从那时起,如果我尝试在以chrome://,chrome-extension://等开头的页面上截图,就会出现错误消息
错误如下:Cannot access contents of url ..... Extension manifest must request permission to access this host.
我的清单中有<all_urls>
权限。
我注意到的另一件事是,在新的(空白)标签上拍摄屏幕快照也不再起作用,但是在那里我遇到了另一个错误:
The 'activeTab' permission is not in effect because this extension has not been invoked.
清单中也有activeTab权限。
有什么想法吗?谢谢!