I need to debug or modify webpages from time to time using JQuery. I open Developer Tools, in Console enter
(function()
{
var s=document.createElement('script');
s.setAttribute('src','https://code.jquery.com/jquery-2.1.1.min.js');
s.setAttribute('type','text/javascript');
document.getElementsByTagName('head')[0].appendChild(s);
jQuery.noConflict();
})();
But Chrome says
Refused to load the script 'https://code.jquery.com/jquery-2.1.1.min.js' because it violates the following Content Security Policy directive: "script-src 'none'".
I understand Content Security Policy is good to prevent cross site scripting. But I want to be able to load JQuery.
How can I load JQuery to any page?