Chrome Version: 61.0.3163.123
We are using "<webview>" tag in webviewpage.html as below
<webview id="webviewid" src="" autosize="on" appcache="true" cache="true" indexedDB="true" localStorage="true" webSQL="true"
cookies="true" partition="persist:apppluswidgets"></webview>
In webviewpage.js, for the "webviewid" id, we are appending the URL to "src" parameter as below,
var wv = document.getElementById('webviewid');
wv.src =json.url; //json.url will contains src url to be append
Once the source URL is appended to the webview, the template source code is overriding the extension source code. This happens only in chrome box but it is not happening in desktop chrome browser when we tried to run in developer mode.
Chrome Version: 61.0.3163.123
We are using "<webview>" tag in webviewpage.html as below
<webview id="webviewid" src="" autosize="on" appcache="true" cache="true" indexedDB="true" localStorage="true" webSQL="true"
cookies="true" partition="persist:apppluswidgets"></webview>
In webviewpage.js, for the "webviewid" id, we are appending the URL to "src" parameter as below,
var wv = document.getElementById('webviewid');
wv.src =json.url; //json.url will contains src url to be append
Once the source URL is appended to the webview, the template source code is overriding the extension source code. This happens only in chrome box but it is not happening in desktop chrome browser when we tried to run in developer mode.
Any help would be greatly appreciated!
Comment 1 Deleted