{% if addons %} {% set worst = addons[0].ts_slowness %}

{% trans %} Add-ons provide many useful features and functions, but they can also cause {{ app }} to become slower. Some add-ons can even slow {{ app }} to a crawl and make it difficult to use for regular web browsing. If you think add-ons might be the reason {{ app }} is lethargic, check the list below for some of the biggest bottlenecks. And remember, for best performance you should disable add-ons that you no longer use regularly. {% endtrans %}

{{ _('Add-ons with Slow Start-up') }}

{% trans %} The following add-ons have a significant impact on how long it takes {{ app }} to start up. {% endtrans %}

{% if show_os %}

{# L10n: Show All, Windows, Mac, Linux. The other names are inserted after the colon. #} {{ _('Show:') }} {# No spaces or all is ruined! #} {{ _('All') }}{% for p in platforms|sort %}, {{ p }}{% endfor %}

{% endif %}
{% for addon in addons %} {% with num = addon.ts_slowness %} {% endwith %} {% endfor %}
{{ _('Rank') }} {{ _('Add-on') }} {{ _('Impact') }} {{ _('Longer lines are slower') }}
#{{ loop.index }} {% if loop.index < 11 %}
{{ addon.name.localized_string }}
{{ _('by') }} {{ users_list(addon.listed_authors) }}
{% else %} {% endif %}
{# L10n: {0} is an add-on's percentage of slowness #} {{ _('{0}% slower')|f(num|int)|safe }}
 
{% if addons|length > 10 %}

{{ _('Show more add-ons') }}

{% endif %}
{% else %}

{{ _('No results found.') }}

{% endif %}