Skip to content Skip to sidebar Skip to footer

Ajax Call Not Working Chrome Extension With Manifest V2

I'm trying to play around with a basic chrome extension which goes something like this chrome.omnibox.onInputChanged.addListener(function(text, suggest){ var baseUrl = 'http

Solution 1:

You should read about Content Security Policy

complete your manifest file with:

"content_security_policy":"script-src 'self' http://sample.com; object-src 'self'",

Post a Comment for "Ajax Call Not Working Chrome Extension With Manifest V2"