There is the following code that is used in the chrome extension:
$.ajax({ url: "https://sitename.com", dataType: 'json', async: false, success: function(data) { $.each( data, function( key, val ) { Which makes simultaneous requests to the api method, there are 24 of them.
But, api gives only 8 requests per second.
How can I force requests to be sent for example with a delay of 130ms?