I’m looking at the http://code.google.com/chrome/extensions/contentSecurityPolicy.html documentation and seeing:
{
...,
"content_security_policy": "script-src 'self' https://example.com; object-src 'self'",
...
}
gets me confused… how is that value put together? What are the relevant pieces?
This means that scripts can be loaded only from the same extension and from https://example.com; media files can only be loaded from the extension.