You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting an update we get review feedback on things that should be done to become a completely approved and searchable extension:
Comments:
Your preliminary review request has been approved.
Please note the following for the next update:
Your add-on prints debugging information to the Error Console, which is generally not allowed in production add-ons.
Due to both security and performance reasons, innerHTML (or similar method) should not be set using dynamic values. This can lead to security issues or fairly serious performance degradation.
For inserting text, textContent or createTextNode() should be used instead of innerHTML.
For inserting HTML, the safer method is to use createElement(), textContent, appendChild() instead of innerHTML.
Removing the innerHTML will improve add-on's prospect of approval.
Thank you.
Your add-on will now appear in search results and categories with some limitations. After 10 days you may request full review to remove these limitations and enable additional features. To learn more about the review process, please visit https://addons.mozilla.org/developers/docs/policies/reviews#selection
The text was updated successfully, but these errors were encountered:
When submitting an update we get review feedback on things that should be done to become a completely approved and searchable extension:
Comments:
Your preliminary review request has been approved.
Please note the following for the next update:
Your add-on prints debugging information to the Error Console, which is generally not allowed in production add-ons.
Due to both security and performance reasons, innerHTML (or similar method) should not be set using dynamic values. This can lead to security issues or fairly serious performance degradation.
For inserting text, textContent or createTextNode() should be used instead of innerHTML.
For inserting HTML, the safer method is to use createElement(), textContent, appendChild() instead of innerHTML.
Removing the innerHTML will improve add-on's prospect of approval.
Thank you.
Your add-on will now appear in search results and categories with some limitations. After 10 days you may request full review to remove these limitations and enable additional features. To learn more about the review process, please visit https://addons.mozilla.org/developers/docs/policies/reviews#selection
The text was updated successfully, but these errors were encountered: