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 have chrome extension in that I am trying to use GWT RPC. Cant make it work. I compile my GWT code with <add-linker name="xsiframe" /> in my module xml file. I am still getting following exceptions in js chrome console without any line numbers:

Refused to execute JavaScript URL because of Content-Security-Policy.

My manifest.json, ver.2is like this:

    "permissions": [
        "http://*/"
      ],

  "content_security_policy": "default-src * 'unsafe-inline'; script-src 'self'; object-        src 'self'; frame-src about:",

  "web_accessible_resources": [
    "js-lib/",
    "js-code/",
    "compiled_gwt_code_from_gwt-war/"
  ] 


Is there a know solution for this deployment? Or what is probably wrong? Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

The new CSP is bullshit. It deliberately cuts off functionality, and it doesn't allow overrides, even though developers know damn well what they're doing.

For now, revert to manifest v.1 in extension manifest.

 ...
 manifest_version: 1,
 ...

The spec should probably become less communist in the future.

share|improve this answer
Changing manifest version to 1 makes no change. Same errors still there. – user271996 May 18 '12 at 13:18
What Chrome version are you running? – GRIGORE-TURBODISEL May 18 '12 at 13:27
I am using ver. 19 on Windows. – user271996 May 18 '12 at 18:00
Have you also commented the line with content_security_policy? I don't know, according to code.google.com/chrome/extensions/manifestVersion.html it should work. – GRIGORE-TURBODISEL May 18 '12 at 23:15
No, but then I thought about it and commented it out. Now it works. Thanks. – user271996 May 19 '12 at 17:20
show 3 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.