Chrome拡張機能でfacebook sj sdkを使用しようとしています。私は私の拡張initでこれをやっています:
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId: 'APP_ID', // App ID from the App Dashboard
//channelUrl : '//www.example.com/', // Channel File for x-domain communication
status: true, // check the login status upon init?
cookie: true, // set sessions cookies to allow your server to access the session?
xfbml: true // parse XFBML tags on this page?
});
// Additional initialization code such as adding Event Listeners goes here
console.log(FB);
};
// Load the SDK's source Asynchronously
(function(d, debug) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement('script');
js.id = id;
js.async = true;
js.src = "http://connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/false));
次のエラーが表示されます。
スクリプト「http://connect.facebook.net/en_US/all.js」の読み込みを拒否しました。これは、次のコンテンツ セキュリティ ポリシー ディレクティブ「script-src 'self' chrome-extension-resource:」に違反しているためです。
マニフェストの許可を に設定していhttp://*/
ます。拡張機能から sdk をロードするにはどうすればよいですか?