I'm working on an extension for Chrome that uses an RSS parser, however I have used several different methods and I keep getting the error: "XMLHttpRequest cannot load Example.rss. Origin chrome extension://djhppbppokfmldecpcfbcmchagimpmpc is not allowed by Access-Control-Allow-Origin."
Tried using the AJAX feed and jFeed methods in the first answer below but neither worked for me.
How to parse an RSS feed using JavaScript?
Here's my JavaScript function:
jQuery.getFeed({
url: 'http://example.rss',
success: function(feed) {
alert(feed.title);
}});
My Manifest.JSON looks like
"manifest_version": 2,
"version": "1.0",
"permissions": ["http://*/", "tabs"],
Any help would be greatly appreciated.