Plugin not load web resources in search-request-view

Hi.
I create another AbstractSearchRequestView extention and need for some additional js.
atlassian-plugin but resources are no loaded.

<web-resource key="exportmod-resources" name="fullContentExportMod Web Resources">
        <dependency>com.atlassian.auiplugin:ajs</dependency>

        <resource type="download" name="styles.css" location="/css/styles.css"/>
        <resource type="download" name="webfunctions.js" location="/js/webfunctions.js"/>
        <resource type="download" name="images/" location="/images"/>
        <!--<context>atl.general</context>-->
        <context>exportmod-resources</context>
    </web-resource>
 <search-request-view key="full-content-view-mod"
                         name="FullContent mod"
                         class="com.avvd.jira.plugin.fullContentExportMod.FullContentModified" state='enabled'
                         fileExtension="html" contentType="text/html">
        <resource type="velocity" name="header" location="templates/header.vm"/>
        <resource type="velocity" name="body" location="templates/body.vm"/>
        <resource type="velocity" name="footer" location="templates/footer.vm"/>
        <order>100</order>
    </search-request-view>

head.vm

$webResourceManager.requireResourcesForContext("com.avvd.jira.plugin.fullContentExportMod:exportmod-resources")
<meta name="decorator" content="atl.general"/>

I also tried to use contexts jira.navigator.advanced and jira.navigator.simple
What i miss?
Thanks for advice.