Chrome: this extension loaded itself too frequently

旧时模样 提交于 2019-12-07 14:44:25

问题


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?


回答1:


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!