Thanks Pedro. I starred and chimed in on the issue. I hope it gets fixed because I'm stuck between Chrome and Firefox right now. Chrome is mostly awesome since the Mac got extensions and some other upgrades. But I still can't get into the developer tools. They're powerful but the usability is just awful compared to firebug.
On Feb 19, 10:16 pm, Pedro Simonetti Garcia <[email protected]> wrote: > Hi Marcos, > > 2010/2/19 Marco Rogers <[email protected]>: > > > I'm using the latest Firebug Lite 1.3 beta extension in Google Chrome > > 5.0 beta on Mac OS X. Firebug won't activate on pages that aren't > > publicly accessible. For instance I'm running a django dev site on > > port 8000 and I can't use it. It works just fine on any external > > site. > > That's a limitation of Chrome's extension "URL macthing" > scheme:http://code.google.com/chrome/extensions/match_patterns.html > > There's 2 ways to workaround this problem: > > 1) Use the default port 80 and then access your site using one > of the following URLs: > > http://127.0.0.1/http://localhost/ > > 2) Change the manifest.json file located in the extension's directory, > and manually include the desired URL in the "permissions" section: > > { > "name": "Firebug Lite 1.3.0 beta for Google Chrome", > > ... > > "permissions": > [ > "tabs", > "http://*/*", > "https://*/*", > "http://127.0.0.1/*", > "http://localhost/*" > "http://localhost:8000/*" > ] > > } > > The problem of #2 is that I guess you'll loose the changes > when a new version come out. So you'll have to manually adjust > the manifest file again in the future. > > > > > Sorry if this is a known issue or even on purpose. It's not urgent > > for me. Just wanted to bring it to the attention of the community and > > see if I was missing something. > > No problem, you came in the right place. If you spot other issues, > please let us know. > > I've created a issue report in the Chromium tracker. You can star the issue > (so Chromium developers will know that more people are interested in this > issue), and you will be notified when we get a response from the > Chromium team: > > http://code.google.com/p/chromium/issues/detail?id=36311 > > regards, > > Pedro Simonetti. > > > > > -- > > 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 > > athttp://groups.google.com/group/firebug?hl=en. -- 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.
