0 search results for modules

When you use the search box on https://addons.mozilla.org/en-US/firefox/ it shows suggestions as I type. But when I hit enter or click on search I get 0 results.

There is a bug reported for this question (don't post in the bug, report as provided for Mozilla developer discussions and resolutions only)-> https://bugzilla.mozilla.org/show_bug.cgi?id=767683

The short term solution is the following:

  • your search from the search Add page - on, then press the Enter key
  • on the results page (showing no found items), in the margin on the left under "Works with", select "All systems", and the results page will fill based on your entry in the search box
  • Unfortunately, the results will be for all operating systems and all versions of Firefox,

The only other options:

  • Enter both in the area of research to Add on as possible and choose in the menu under the search field
  • Use a search engine (like Google) to search for modules in their name and look for a link with https://addons.mozilla.org/... start

If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

Tags: Firefox

Similar Questions

  • search results for Firefox does not open. I rebooted and prob persists.

    Firefox's search results will not be not open if clicked.

    I removed and reloaded firewfox and the problem remains.

    My Favorites and bookmarks open wind, but new research results will not open if clicked.

    the image and video features open if clicked on, but none of the sites listed in the search results will open.

    -> Tap ALT key or press F10 to display the Menu bar

    -> go to Menu help-> select restart with disabled modules

    Firefox closes, then it will open with Firefox comes from base. Now follow these steps:

    -> Update ALL your plugins Firefox https://www.mozilla.com/en-US/plugincheck/

    -> go to Menu view-> toolbars-> all unwanted/incompatible deselection with toolbars

    -> go to the Menu Tools-> clear recent history-> range of time: select 'ALL' -> click details (small arrow)-> location-> checkmarks on the Cookies, Cache , click clear now

    -> go to the Tools Menu-> Options-> content-> place the check on:

    Images of care 1) block popups 2) automatically) 3 turn on JavaScript

    -> go to the Tools Menu-> Options-> Security-> place the check on:

    ((1) Warn me when sites try to install modules) 2 block reported attack sites block 3) declared false web 4) remember passwords for sites

    -> go to the Tools Menu-> Options-> advanced-> network-> Offline Storage (Cache): click on the clear now button

    -> Click OK in the Options window

    -> click on the favorite on the search bar icon-> click Manage search engines -> select all unwanted search engines and click delete -> click OK

    -> go to the Tools Menu-> Modules-> Extensions-> section REMOVE all unwanted/Suspicious/Incompatible (modules)-> restart Firefox Extensions

    -> go to the Tools Menu-> Modules-> appearance-> section REMOVE all unwanted/Suspicious/Incompatible (Persona)-> restart Firefox

    You can activate your known & modules worthy of trust and themes later. Check and tell if its working.

  • I want to erase the search results for certain searches. When I search for some keywords I get old SERPs that I know are not up-to-date. If I use a different machine, I get the current results. I can't find how to clear it.

    I am tracking my own Web site position in search rankings. For a short period, he appeared on page 1 for certain keywords. It is now on page 2 or 3, (as seen by me and other users when you use another computer or a browser), but when I search on my computer I see the old pages of results showing the top of page 1. How can I erase these old pages of results?

    If you press Ctrl and F5 at the same time, that changes? I think that Google (I guess that's what you're referring to the) changes in search results is inspired by a little if you are connected and preferences, etc.. Try to connect on google if you are connected.

  • "black square shrinking" appears when some the search results for "Array Constant" are double-cliquée.

    In the process of troubleshooting an issue of size of table, I did a Ctrl + F search after selecting a constant matrix.  I find a large number of raster constants in the search results.  However, many of these results (most behaves normally), if the item in the search results has double-clicked, momentary displays a black square, about the size of a standard icon, which immediately reduced to nothing.  There is no indicator selection outline.  I used this nice ShowAllControls & TabCtrl .vi utility to display all the controls, but nothing appears in this place.

    Someone has encountered this?  So far, it's just a nuisance. I am not free to view the code that was developed by a third party.  I would like to make a screenshot, but the black square disappears too quickly.


  • How can I remove malware that redirects to another site search results for example find fast answers?

    Whenever I use the search engines Google or Bing for a topic and receive the results, whenever I try to click on the link in the results, my research turned away on gimme responses or answers or some other search engine site instead of take me to the link I have on that clash.

    How can I remove it?

    I use Microsoft Security Essentials.

    Hi Steve_661,

    Please try to do a scan with the Microsoft Safety Scanner:

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    I hope this helps!

  • change/stylize the re ' search results for use on screen .htmlText

    Hello

    I am working on a search function but have a little trouble finishing some details display. The following code works very well to find and display the text in an xml file, but I want the results displayed differently.

    Use the following as a source XML, I would like to:
    -Put highlighted in red (var searchTerm) search term when found in the xml file
    -Add a few characters before and after the search term to give the term found little context

    For now, how could I add 3 characters before and after the search term, as follows: "The first tex" - and highlight 'first' in red?

    Thanks much for any help.
    ~ chipleh

    var xmlFileToSearch:XML = 
    <xml>
         <sim>    
              <bodyText>
                   <page number="0">        
                        <para><![CDATA[The first text to search]]></para>
                   </page>
                   <page number="1">
                        <para><![CDATA[The 2nd text to search]]></para>
                   </page>
                   <page number="2">
                        <para><![CDATA[The 3rd text to search]]></para>
                   </page>
                   <page number="3">
                        <para><![CDATA[The 4th text to search]]></para>
                   </page>
              </bodyText>
         </sim>
    </xml>
    ;
    
    function searchXMLFile():void
    {            
         var xmlBody:XML = xmlFileToSearch.sim.bodyText[0];
         var pageList:XMLList = xmlBody.page; 
         //String to search for
         var searchTerm:String = "first";  
         for (var i:int = 0; i < pageList.length(); i++)
         {  
              var item:XML = pageList[i];
              var textList:XMLList = item.para.text();    
              for (var j:int = 0; j < textList.length(); j++)
             {   
                   var t:XML = textList[j];   
                   //if the string is found
                   if (t.toString().toLowerCase().indexOf(searchTerm.toLowerCase()) != -1)
                   {      
                        //traces "Page 1. - The first text to search"
                        trace("Page " + (Number(item.attributes())+1) +". - "+t.toString());
                        //How could I add 3 characters before and after the search term, like so: "The first tex" 
                        //- and highlight 'first' in red?   
                        searchDisplay.htmlText += ("Page " + (Number(item.attributes())+1) +". - "+t.toString());            
                   }   
              } 
         }
    }
    
    searchXMLFile();
    


    t.substring(t.indexOf(searchTerm) - 4, t.indexOf(searchTerm)) + "" + searchTerm + "" + t.substr(t.indexOf(searchTerm) + searchTerm.length, 4);
    
  • PSE8 Organizer - search results for Odd keyword tag

    Question for example of marking in the Organizer 8 elements.

    I have 2 friends Bill and Sandra (keyword tags), they belong to the same sub-group "Friends."

    Now, when I'm looking for PSE8 Organizer Sandra e.g. by check the checkbox for 'Sandra '. Photos much more only Sandra appear the result set. For me this make no sense at all.  BUT on the other hand, if I create a subcategory of "Sandra" and tag the pictuters even with that, then I have no problem. Only pictures of Sandra (as a subcategory) tagged will be present in the result set.

    Thank you very much for any clue or help.

    Nemo

    Since your labeled image "Sandra" is part of a battery, when you search for 'Sandra', PSE 8 shows the full stack. For these photos, where 'Sandra' is not labeled, PSE 8 shows red icon at the top left of the image to indicate no match.  This is also true for games version as well.

    Had your images is not part of the stack, PSE 8 would have shown you only photos marked "Sandra."

    Please let me know if you have any doubts.

    ~ Sourabh

  • Can't see how to set the search results for UK only

    When searching in Firefox, I used to be able to click on 'Search tools' and find only options for 'any country' or 'UK '. This is more so I'll have to trawl through a lot of unnecessary stuff when I want something local. Can I get that back

    I think that Google has stopped redirect EN - GB users automatically from .com to. co.uk for a reason any. When you're on .com, you really don't get country-specific options.

    What I suggest is to install a plugin of U.K. research directed to the next page and make that your default value:

    http://mycroftproject.com/Google-search-plugins.html

    One titled "Google UK - the UK (SSL)" sounds like the best match for you.

    Does it work?

  • After the search results for updating data

    Hi all

    We have requirment.

    We have from the data of the OTL requirment.

    We're getting data destruction part otl after we have updated the table in Oracle Application.

    based on the table of the custom, we created the search page. Search page up works very well. I created the Manula research with advanced table.

    When enter the number of employee and data to date. get the Resusts Table. with MessageTextInput

    Here, we get the problem

    We want to put the ResulsTable values.

    As
    Search page enter the input values: number: 1001

    Array of result values.

    Employee employee number name Nohours Extra hours Date
    1001, VENKAT REDDY 8 3 28 AUGUST 2009


    We want to change the values above except the name of the employee, the employee number.

    Can you give me any suggestions how to reach my requirment. If possible take the high monitoring...


    Thank you
    Venkat Reddy Pulichintha
    [email protected]

    Hi out,.

    There may be several ways of doing things... I mentioned a...

    You mentioned the other is...

    The two will suffice.

    Thank you
    Gerard

  • Search results for MySQL &amp; gt; 2 days ago

    Hi all

    I'm doing a site for a group and would like to have a section of the site that shows how their performance will be. I want this to show all events and all the events that have taken place over the last 2 days.

    Right now I have my mysql updated query in place with ' WHERE Shows.show_date > = NOW() ' and that works well, but is there a way to also pull the data for 2 days before NOW() events?

    I use mysql and php.

    Thanks in advance for any help/suggestions you may have!

    .oO (sfopp)

    > I'm doing a site for a group and would like to have a section of the site
    > which shows when will be their performance. I would like to show everyone to come
    > events and all the events that have taken place over the last 2 days.
    >
    > Right now I have my mysql updated query in place with ' WHERE Shows.show_date > = NOW() '.
    > and that works well, but is there a way to also pull data for the 2 events
    > days before now()?

    Sure. Take a look at DATE_SUB () / DATE_ADD ():

    http://dev.MySQL.com/doc/refman/5.0/en/date-and-time-functions.html#function_date-add

    Micha

  • Search results for problem when I change the OS hardware

    Dear Sir

    Whene ever I change hardware like RAM access usb it ask the Windows Activation on a virtual machine, I use Windows XP

    You must not modify virtual hardware too often - MS allows only a limited number of changes until they suspect abuse.
    Better choose a reasonable amount of vRAM and stay that way.
    Also do not remove and readd the USB controller.

    It's expected behaviour unless you have a volume license.

  • I created a Web site, how can I make it visible to others in Mozilla search results?

    Dear Mozilla community,

    I just finished creating information website www.darimulutkemulut.com (DMM) which provides the possibility of publishing a few free classifieds. The site focuses mainly on visitors to the Indonesia, but can be used by everyone.

    What will do to make the site become visible to others in the Mozilla search engine results? At the moment research Mozilla provides no search results for my site. The only opportunity to open the site - whether to put his name in the address bar. But normally people just use the search engine.

    Please advise, thank you

    Concerning
    Alex

    "Mozilla" is not a "search engine" - it makes the programs that use the internet. Google, Bing and Yahoo are search engines, among others.

    Firefox, Chrome, IE, and Safari are web browsers.

    As far as http://www.darimulutkemulut.com goes, is always at the same begins to loading in America North and never loads completely enough for me to see any content at all.

    This area does not seem to have an IP address assigned to it.
    http://domain-KB.com/www/darimulutkemulut.com

  • Increase the search results to be more than 500

    We have a requirement of use to increace the search results for any type of technique to over 500 (now the set limit). Is it possible none in the system?

    This limit is in place for performance reasons and cannot be rid of basic research.   However, usually when users want more than 500 results is because they are tasks considered compared to standard search/navigation tasks.   For tasks in report, we published reports ready.  Ready reports offers the same features that the search you can adjust the limit of 500 and run saved contextual criteria.   Alternatively, you can calm the concern for the performance by implementing enforcement reports, ready to use a reporting database if necessary.

    Reports of loan is extremely simple to install.  You can learn more on this topic by watching the video of presentation on the collaboration site.  You can also read the guide that is located in the pack of extensibility.

  • Numbering of the GREP search result

    Hi all

    I am trying to apply some paragraph styles to various items in my document, but rather than static reference to the paragraphs in question (whose position can be subject to change in the future), I try to do a GREP search result-based. The chapters follow the same structure, with a subtitle of chapter ("Chapter 1, Chapter 2, and so on"), followed by a paragraph with the title of the chapter, followed by the first paragraph of the body.

    Now, it is easy for me to find the chapter number using a GREP search, and I would like to know if it is possible for me to read the number of paragraph of this search result. In this way, I can start the paragraph numbers of the remaining items on their position relative to the subheading and then apply the styles to paragraph appropriate for them.

    All the best and thanks in advance,

    Julian

    p.s.: as a reference, this is the result of the search:

    
    
    
    
    // Find chapter subheading and apply
    
    
    
    app.findGrepPreferences = app.changeGrepPreferences = null;
    
    
    
    app.findGrepPreferences.findWhat = "(?i)Hoofdstuk \w*\r";
    
    
    
    var myStartLine = myDocument.findGrep(); // Save search result for future reference as a first line
    
    
    
    app.changeGrepPreferences.appliedParagraphStyle = myPGS_CS ;
    
    
    
    myDocument.changeGrep();
    
    
    
    

    Just another idea: If you can find your first paragraph apply the paragraph style, and then loop through all paragraphs in the document and compare the name of the applied style. If you found one, the next paragraph is the current a + 1, the second is the current a + 2.

    var curDoc = app.activeDocument;
    
    app.findGrepPreferences = app.changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "Head \\d\\r";
    app.changeGrepPreferences.appliedParagraphStyle = "h1";
    
    var startLine = curDoc.findGrep();
    curDoc.changeGrep();
    
    var allParas = curDoc.stories.everyItem().paragraphs.everyItem().getElements();
    
    for ( var p = 0; p < allParas.length; p++ ) {
        var pStyleName = allParas[p].appliedParagraphStyle.name;
        if ( pStyleName == "h1" ) {
            allParas[p+1].appliedParagraphStyle = "p1";
            allParas[p+2].appliedParagraphStyle = "p2";
        }
    }
    

  • How to remove all kinds extensios in search result

    Hi all,

    In "crawler.dat" of the file in the session 'exclusion file name default suffix list', I add other extensios:
    RX_BOUNDARY (?i:(?:\.jpg)|(?:\.jpeg) ... (?:\.css)|(?:\.js))$
    However, these files are shown in search result of SES. I would like to delete *.js files search results, for example.

    How would I do that?

    Kind regards

    No, they are going to get deleted. It uses a background task to do this, I believe, so it will take time before they are all deleted from the database.

Maybe you are looking for

  • HP Photosmart 7520: My printer makes me save the document first instead of print only

    For some reason, now my printer saves me everything I want to print first in my documents, and then I have to go to the documents to print it from there.  What is happening with my Office Windows 8 and our Windows 7 laptops.  I can't just hit print m

  • virus boot.tidserv.b

    Dell optiplex gsx620 boots to load then goes black dosnt do anything, cd player works ran resourse cd that came with it checked that everything ok that no error has run the norton bootable recovery tool found virus Boot.tiserv.b could not repair.will

  • Windows XP SP3 installation will erase the data on the computer?

    original title: if I change my windows xp sp2 to windows xp sp3, the data of my other drives (D:, E: and F :) will get deleted? what should I back up these data?) I currently have Windows xp sp2. I want to switch to windows xp sp3 install some softwa

  • Can not read the cd

    I can read is no longer of cds or dvds.  Y at - it no diagnosis of VISTA that I can use?

  • Windows 7 Bluetooth audio problems

    I bought a Sony SRS - XB2 Bluetooth speaker in the USA. I'm trying to use it to listen to music from my computer laptop runing windows 7. The speker is recognized but you are asked to install the drivers and when I access Sony supports, they say, tha