Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting the following error when I am trying to connect to stackoverflow api to fetch data: Refused to load the script

http://api.stackoverflow.com/1.1/questions/unanswered?pagesize=24&tagged=java%20sql&jsonp=jQuery1506144814109429717_1352283176238&_=1352283176259

because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'".

This is my manifest file:

{
  "manifest_version": 2,
  "background" : { "page": "background.html"},
  "browser_action": {
    "default_icon": "images/16.png",
    "default_popup": "popup.html",
    "default_title": "Test"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; connect-src 'self' http://stackoverflow.com/ http://api.stackoverflow.com/; object-src 'self'",
  "content_scripts": [ {
    "all_frames": true,
    "js": [ "javascripts/settings.js" ],
    "matches": [ "http://*/*", "https://*/*", "ftp://*/*" ],
    "run_at": "document_start"
  } ],
  "description": "test api.",
  "icons": {
    "128": "images/128.png",
    "16": "images/16.png",
    "48": "images/48.png"
  },
  "options_page": "options.html",
  "minimum_chrome_version": "9",
  "name": "Test Test",
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "webRequest",
    "*://*.stackoverflow.com/*",
    "*://stackoverflow.com/*"
  ],
  "version": "1.1"
}

I don't have any inline scripts.

Any idea what I am missing here?

share|improve this question
2  
possible duplicate of Get JSON in chrome plugin – Rob W Nov 8 '12 at 11:33
Thanks man.. issue solved, just remove the jsonp form the jquery ajax call. – Meir Nov 8 '12 at 12:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.