> I'm trying to add a new button to the fbNetButtons with the idea of > filtering the net request rows based on some rules. I'd like your > input on how to format these rules. The rules should be either loaded > from an external file (file or URL) or added from the UI. I know > you're working on the Net Panel - Advanced Filtering functionality but > until that comes...
I guess you are talking about: http://www.malditocrc.com.ar/peregrino/lab/firebug/advfilters/ extension that is made by HernĂ¡n. > When clicking on this button, the net request table should show only > rows with specific hostnames (I'm using CSS as in your fileCategory > filter). Each website's hostname will have a list of hostnames for > which rows should be shown (I will need a mapping between the > website's hostname - possibly regexp - and associated net request > hostnames). When clicking on the rows, there'll be an extra tab with > info specific to that hostname (will need a mapping between hostnames > and the info to be displayed). > Do you recommend any specific format? Will JSON do just fine? I have personally good experience with storing data as JSON. It easy to manipulate using built in JSON support (JSON.parse + JSON.stringify) and it nicely fits into the Javascript world. Honza -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
