I’m building a custom Chrome extension. Sporadically my extension shows this message.
This extension loaded itself too frequently
What does this mean? Maybe I’m exceeding some threshold which disables the extension?
You've called chrome.runtime.reload
too often.
Chrome considers a reload a "fast reload" when you call chrome.runtime.reload
within ten seconds after loading the extension. When your extension triggers more than five "fast reloads", then the following warning will be shown in the UI:
This extension reloaded itself too frequently.
来源:https://stackoverflow.com/questions/29086691/chrome-this-extension-loaded-itself-too-frequently