Note that there are some explanatory texts on larger screens.

plurals
  1. PORefused to load the script because it violates the following Content Security Policy directive: "script-src 'self'
    text
    copied!<blockquote> <p>I am trying to develop a chrome appplication in which i want to display a custom Rss feeds but feeds are not get loaded and dispalying error like above.</p> <p>Error Details in which is displayed</p> </blockquote> <pre><code>Refused to load the script 'https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js' because it violates the following Content Security Policy directive: "script-src 'self' https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js". Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js". jquery.min.js:35 Refused to load the script 'https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js' because it violates the following Content Security Policy directive: "script-src 'self' https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js". Refused to load the script 'http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&amp;num=2&amp;output=json&amp;q=http%3A%2F%2Fblog.tax2290.com%2Ffeed%2F&amp;hl=en&amp;callback=jsonp1373953012503' because it violates the following Content Security Policy directive: "script-src 'self' https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js". </code></pre> <blockquote> <p>manifest.json</p> </blockquote> <pre><code>{ "name": "Tax New 2290", "manifest_version": 2, "version": "1.1", "description": "Tax 2290", "web_accessible_resources": ["images/logo.png"], "icons": { "16": "icon16.png", "19":"icon19.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "browser_action": { "default_icon":"images/logo.png", "default_popup":"index.html" }, "permissions": ["tabs", "&lt;all_urls&gt;","http://www.tax2290.com","http://*/*", "https://*/*","http://*.google.com/"], "content_security_policy": "script-src 'self' https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js; https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js; object-src 'self'" } </code></pre> <blockquote> <p>index.html</p> </blockquote> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="images/feed.js"&gt;&lt;/script&gt; &lt;link rel="stylesheet" href="images/style.css" type="text/css" /&gt; &lt;title&gt;Chrome Popup&lt;/title&gt; &lt;/head&gt; </code></pre> <blockquote> <p>feed.js</p> </blockquote> <pre><code> $(function() { var $items = $('#vtab&gt;ul&gt;li'); $items.mouseover(function() { $items.removeClass('selected'); $(this).addClass('selected'); var index = $items.index($(this)); $('#vtab&gt;div').hide().eq(index).show(); }).eq(0).mouseover(); }); $(document).ready(function () { $('#divRss2').FeedEk({ FeedUrl: 'http://blog.tax2290.com/feed/', MaxCount: 2,ShowDesc: true, ShowPubDate: true, DescCharacterLimit: 250 }); }); &gt; Please tel me how could avoid these errors and load the custom RSS feeds. </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload