This error, and the equivalent This request exceeds the MAX_WRITE_OPERATIONS_PER_HOUR quota. appear when too many write operations are performed on the chrome.storage.sync object. This is important for the extension to be able to set settings values. It is mostly used when shuffling, as the numShuffledVideosTotal counter is increased.
A solution could be to not increase that counter if the user is getting too close to using up the quota for this duration.
This error, and the equivalent
This request exceeds the MAX_WRITE_OPERATIONS_PER_HOUR quota.
appear when too many write operations are performed on thechrome.storage.sync
object. This is important for the extension to be able to set settings values. It is mostly used when shuffling, as thenumShuffledVideosTotal
counter is increased.A solution could be to not increase that counter if the user is getting too close to using up the quota for this duration.