firefox-developer-tools

How to activate multi-line command line in Firefox DevTools?

☆樱花仙子☆ 提交于 2019-11-30 18:58:21
How to make the console of the Firefox DevTools multi-line? I am aware of the Shift + Enter keyboard shortcut, which makes the command line go to the next line. Though like in Firebug, I want to vertically separate my console into command line and results part, but I can not find that functionality. You can try the scratchpad . Go to Settings >> Available Toolbox Buttons and check the box for scratchpad . Refer the screenshot : Once done, you'll have a notepad-like icon in your developer console navigation bar on the right side... . Click on it and it will open a scratch pad on which you can

Firefox - Disable 'debugger' keywords

放肆的年华 提交于 2019-11-30 08:57:20
How do I tell Firefox not to stop if it sees a debugger keyword? I need to avoid a continuous debugger loop in case the website uses debugging protection generating debugger statements on the fly using timers. Here is an example. In case you open the debugging console the script will throw tons of debugger statements, which will block you from normal debugging work. An example website is http://www.avito.ru - the biggest classified site in Russia. Open it and then open the debugger console and it will be immediately stop at the debugger keyword in generated script. (function(x/**/) { (function

How to activate multi-line command line in Firefox DevTools?

穿精又带淫゛_ 提交于 2019-11-30 03:21:34
问题 How to make the console of the Firefox DevTools multi-line? I am aware of the Shift + Enter keyboard shortcut, which makes the command line go to the next line. Though like in Firebug, I want to vertically separate my console into command line and results part, but I can not find that functionality. 回答1: You can try the scratchpad . Go to Settings >> Available Toolbox Buttons and check the box for scratchpad . Refer the screenshot : Once done, you'll have a notepad-like icon in your developer

Firefox - Disable 'debugger' keywords

夙愿已清 提交于 2019-11-29 08:06:19
问题 How do I tell Firefox not to stop if it sees a debugger keyword? I need to avoid a continuous debugger loop in case the website uses debugging protection generating debugger statements on the fly using timers. Here is an example. In case you open the debugging console the script will throw tons of debugger statements, which will block you from normal debugging work. An example website is http://www.avito.ru - the biggest classified site in Russia. Open it and then open the debugger console

How do I disable firefox console from grouping duplicate output?

走远了吗. 提交于 2019-11-29 02:56:18
Anyone knows how to avoid firefox console to group log entries? I have seen how to do it with firebug https://superuser.com/questions/645691/does-firebug-not-always-duplicate-repeated-identical-console-logs/646009#646009 but I haven't found any group log entry in about:config section. I don't want use Firebug, because it's no longer supported or maintained and I really like firefox console. I try to explain better, I want console to print all logs and not the red badge with number of occurences of one log string: In the above picture I would like to have two rows of the first log row, two rows

Firebug is not working with Firefox version 50.0

这一生的挚爱 提交于 2019-11-28 21:39:13
I am using Firefox 50.0. After auto update of Firefox to version 50.0, Firebug has stopped working and attempting to use it is showing an inbuilt Firefox console while inspecting any DOM element. Is there any patch to use Firebug on Firefox 50.0 version? Solve The problem by Changing Mozilla Browser Configuration Settings. Open A Blank Tab type about:config in address bar then press enter (click on I accept the risk!) find browser.tabs.remote.autostart select the option then click the mouse right side Turn The Option As False Close the browser for restart browser open browser again, inspect

What are the alternatives to the Firefox Developer Tools?

↘锁芯ラ 提交于 2019-11-28 12:01:34
Since last few updates of Firefox our beloved Firebug is integrated into the Firefox Developer Tools and a lot of people including me don't like what happened to Firebug. The built-in developer tools have a very ugly menu system and messed up usability. So, what are the alternatives to the Firefox Developer Tools? Is there a tool with the same usability as Firebug? Alternatives are: Turn off multi-process Firefox . (Though that's only a temporary solution and doesn't bring back all functionality of Firebug. E.g. the Script panel is broken in current versions of Firefox.) Install an old version

How can you disable the new JSON Viewer/Reader in Firefox Developer Edition?

三世轮回 提交于 2019-11-28 09:02:28
Firefox Developer Edition 44 now has a built in JSON Viewer . It's a nice gesture, but I highly prefer the readability of the third-party JSON viewer I was using. Is there any way to disable, override, or otherwise customize the new built in JSON viewer? canuckistani Go to about:config In search, paste 'devtools.jsonview.enabled' Select the pref, right-click and select 'toggle' 来源: https://stackoverflow.com/questions/34399282/how-can-you-disable-the-new-json-viewer-reader-in-firefox-developer-edition

Firefox Developer Tools JS editor (like firebug)?

穿精又带淫゛_ 提交于 2019-11-28 08:58:41
问题 Does anybody knows if there is a way to show a javascript code editor in Firefox Developer Tools which looks like firebug's? I find it a lot more convenient to work this way on large, complex pieces of code, where I can see the code on the right side and the result on the left. 回答1: Firefox DevTools has something called Scratchpad which resembles the code editor of Firebug. It's a separate window, but there's a way to have it as a panel inside DevTools too. Additionally it supports the

How do I see the console.log output of a background script in a Firefox WebExtension?

家住魔仙堡 提交于 2019-11-28 04:20:53
问题 Does anyone know how to see the output from a console.log() call in a background script? I can see the output from the same in a content script. Here is a simple script that I am testing this with: Here is my background.js : console.log("Message from background.js"); Here is my manifest.json : { "name": "TestBed", "manifest_version": 2, "version": "1.0", "background": { "scripts": ["background.js"] }, "browser_action": { "default_title": "Click" }, "applications": { "gecko": { "id": "testbed