Решил написать расширение, но хром не пускает ни какие щапросы хотя в манифесте все прописую. 
"permissions": [ "tabs", "notifications", "storage", "contextMenus", "http://*/*" ],
jQuery.ajax({
          type: "POST",
          url: "http://www.API.com/endpoint",
          data: {url: url, date: date, clientId: clientId},
          success: function(data) {
         console.log(data);
          }
  });
и через xhr пытался, ничего не получаеться, получаю такую ошибку 
Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:". Either the 'unsafe-inline' keyword, a hash ('sha256-...'), or a nonce ('nonce-...') is required to enable inline execution.
Может кто знает как это поправить?