在我们的Chrome扩展程序中,我们使用如下
<webview id="webviewid" src="" autosize="on" appcache="true" cache="true" indexedDB="true" localStorage="true" webSQL="true" cookies="true" target="_blank" partition="ourExtensionNamepluswidgets"> </webview>
我们通过
动态追加src网址var wv = document.getElementById('webviewid');
wv.src =json.url; //json.url will contains src url to be append
在版本61的Chrome更新后,当我们进入我们正在使用的页面&#34; webview&#34;时,扩展源代码没有运行,而是我们在webview中追加的URL被加载。
我检查过页面元素(在开发者模式下)。
在检查它时显示的是src url内容源代码,它没有显示标记,也没有显示扩展名html。