You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 15, 2017. It is now read-only.
When inline javascript execution is blocked using CSP, this causes all external javascript to not even attempt to load.
As as consequence we can't count solely on webRequest.onBeforeLoad as the only mechanism to report external javascript files, thus we need script tags to be manually looked up in a content script.
As a consequence javascript tags are reported twice in the log when inline javascript is not blocked, from webRequest.onBeforeLoad and from contentscripthandler.js.
So contentscripthandler.js should log only if inline javascript is disabled.
The text was updated successfully, but these errors were encountered:
Problem is:
When inline javascript execution is blocked using CSP, this causes all external javascript to not even attempt to load.
As as consequence we can't count solely on
webRequest.onBeforeLoad
as the only mechanism to report external javascript files, thus we need script tags to be manually looked up in a content script.As a consequence javascript tags are reported twice in the log when inline javascript is not blocked, from
webRequest.onBeforeLoad
and fromcontentscripthandler.js
.So
contentscripthandler.js
should log only if inline javascript is disabled.The text was updated successfully, but these errors were encountered: