|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Command Line Options. Консоль браузера firefoxAll keyboard shortcuts - Firefox Developer ToolsThis page lists all keyboard shortcuts used by the developer tools built into Firefox. The first section lists the shortcut for opening each tool and the second section lists shortcuts that are applicable to the Toolbox itself. After that there's one section for each tool, which lists the shortcuts that you can use within that tool. Because access keys are locale-dependent, they're not documented in this page. These shortcuts work in the main browser window to open the specified tool. For tools that are hosted in the Toolbox, they work to close the tool if it is active. For tools like the Browser Console that open in a new window, you have to close the window to close the tool.
1. Unlike the other toolbox-hosted tools, this shortcut does not also close the Web Console. Instead, it focuses on the Web Console's command line. To close the Web Console, use the global toolbox shortcut of Ctrl + Shift + I (Cmd + Opt + I on a Mac). 2. Before Firefox 55, the keyboard shortcut was Ctrl + Shift + Q (Cmd + Opt + Q on a Mac). 3. Until Firefox 38, when the Browser Console is hidden by a normal Firefox window, the same key combination closes the Browser Console. From Firefox 38 onwards, if the Browser Console is hidden by a normal Firefox window, this key combination brings the Browser Console back on top and focuses on it. 4. The tool is disabled by default, so the shortcut would not work until it is enabled from the Settings Panel Source editorThis table lists the default shortcuts for the source editor. In the Editor Preferences section of the developer tools settings, you can choose to use Vim, Emacs, or Sublime Text key bindings instead. To select these, visit about:config, select the setting devtools.editor.keymap, and assign "vim" or "emacs", or "sublime" to that setting. If you do this, the selected bindings will be used for all the developer tools that use the source editor. You need to reopen the editor for the change to take effect. From Firefox 33 onwards, the key binding preference is exposed in the Editor Preferences section of the developer tools settings, and you can set it there instead of about:config.
Page Inspector
Node pickerThese shortcuts work while the node picker is active.
HTML paneThese shortcuts work while you're in the Inspector's HTML pane.
Breadcrumbs barThese shortcuts work when the breadcrumbs bar is focused.
CSS paneThese shortcuts work when you're in the Inspector's CSS pane.
DebuggerDebugger (Before Firefox 52)
1. By default, on some Macs, the function key is remapped to use a special feature: for example, to change the screen brightness or the volume. See this guide to using these keys as standard function keys. To use a remapped key as a standard function key, hold the Function key down as well (so to open the Profiler, use Shift + Function + F5). Web Console
Command line interpreterThese shortcuts apply when you're in the command line interpreter.
These shortcuts apply while the autocomplete popup is open:
Style Editor
Scratchpad
Eyedropper
developer.mozilla.org Web Console Helpers - Firefox Developer ToolsThe commandsThe JavaScript command line provided by the Web Console offers a few built-in helper functions that make certain tasks easier. $() Looks up a CSS selector string, returning the first element that matches. Equivalent to document.querySelector() or calls the $ function in the page, if it exists. $$() Looks up a CSS selector string, returning an array of DOM nodes that match. This is like for document.querySelectorAll(), but returns an array instead of a NodeList. $0 The currently-inspected element in the page. $_ Stores the result of the last expression executed in the console's command line. For example, if you type "2+2 <enter>", then "$_ <enter>", the console will print 4. $x() Evaluates an XPath expression and returns an array of matching nodes. keys() Given an object, returns a list of the keys (or property names) on that object. This is a shortcut for Object.keys. values() Given an object, returns a list of the values on that object; serves as a companion to keys(). clear() Clears the console output area. inspect() Given an object, opens the object inspector for that object. pprint() Formats the specified value in a readable way; this is useful for dumping the contents of objects and arrays. help() Displays help text. Actually, in a delightful example of recursion, it will bring you to this page. cd()Switch JavaScript evaluation context to a different iframe in the page. This helper accepts multiple different ways of identifying the frame to switch to. You can supply any of the following:
See working with iframes. copy() New in Firefox 38. Copy the argument to the clipboard. If the argument is a string, it's copied as-is. If the argument is a DOM node, its outerHTML is copied. Otherwise, JSON.stringify will be called on the argument, and the result will be copied to the clipboard. clearHistory() New in Firefox 39. Just like a normal command line, the console command line remembers the commands you've typed. Use this function to clear the console's command history.Please refer to the Console API for more information about logging from content. VariablestempN The "Use in Console" option in the Inspector generates a variable for a node named temp0, temp1, temp2, etc. referencing the node.ExamplesLooking at the contents of a DOM nodeLet's say you have a DOM node with the ID "title". In fact, this page you're reading right now has one, so you can open up the Web Console and try this right now. Let's take a look at the contents of that node by using the $() and inspect() functions: inspect($("#title"))This automatically opens up the object inspector, showing you the contents of the DOM node that matches the CSS selector "#title", which is of course the element with ID "title". Dumping the contents of a DOM nodeThat's well and good if you happen to be sitting at the browser exhibiting some problem, but let's say you're debugging remotely for a user, and need a look at the contents of a node. You can have your user open up the Web Console and dump the contents of the node into the log, then copy and paste it into an email to you, using the pprint() function: pprint($("#title"))This spews out the contents of the node so you can take a look. Of course, this may be more useful with other objects than a DOM node, but you get the idea. Document Tags and ContributorsContributors to this page: wbamberg, Sebastianz, Naesten, jryans, paulojackson42, myakura, Delapouite, Rcampbell, TTO, ethertank, JoeDrew, saneyuki_s, Steffen, Sheppy Last updated by: wbamberg, Oct 17, 2016, 9:06:09 AMdeveloper.mozilla.org Command Line Options - MozillaCommand line options are used to specify various startup options for Mozilla applications. For example, you can use command line configuration options to bypass the Profile Manager and open a specific profile (if you have multiple profiles). You can also control how Mozilla applications open, which components open initially, and what the components do when they open. This page describes the commonly used options and how to use them. You can open the Command Line Interface by pressing Shift + F2. Syntax RulesBut first, let's describe the syntax rules that apply for all options.
Using command line optionsCommand line options are entered after the command to start the application. Some options have arguments. These are entered after the command line option. Some options have abbreviations. For example, the command line option "-editor" can be abbreviated as "-edit". (Where abbreviations are available, they are described in the text below.) In some cases option arguments must be enclosed in quotation marks. (This is noted in the option descriptions below.) Multiple command line options can be specified. In general, the syntax is as follows: application -option -option "argument" -option argumentExamplesThe following examples show the use of the "-ProfileManager" command, which will open the Profile Manager prior to starting Firefox or Thunderbird: WindowsSelect Run from Windows Start menu. Type: firefox -ProfileManagerMac OS XGo to Applications > Utilities. Open Terminal and type: cd /Applications/Firefox.app/Contents/MacOS ./firefox -ProfileManagerIf you use Firefox Nightly, you can type: cd /Applications/FirefoxNightly.app/Contents/MacOS ./firefox -ProfileManagerLinuxOpen Terminal and type: cd Thunderbird installation directory ./thunderbird -ProfileManagerThe example above invokes the "-ProfileManager" command line option with Mozilla's Thunderbird mail client. User Profile-CreateProfile profile_nameCreate a new profile in the default directory, but do not start application. The profile will be named profile_name in the profile manager. profile_name must not contain spaces ( ). To use this successfully no instance of the application must be running, or the -no-remote options must be used. firefox -CreateProfile JoelUser-CreateProfile "profile_name profile_dir"Creates a new profile in the profile_dir directory, but do not start application. The profile will be named profile_name in the profile manager. Note profile_name and profile_dir are quoted together, and are separated by exactly 1 space (as with the previous syntax, profile_name must not contain spaces). To use this successfully no instance of the application must be running, or the -no-remote options must be used. NOTE: profile_dir must not exist and you must not already have a profile called profile_name. firefox -CreateProfile "JoelUser c:\internet\joelusers-moz-profile"-migrationStart with Import Wizard. -new-instanceOpen new instance, not a new window in running instance, which allows multiple copies of application to be open at a time. firefox -new-instance -P "Another Profile"-no-remoteDo not accept or send remote commands; implies -new-instance. firefox -no-remote -P "Another Profile" Note: Since Firefox 9, this does really mean what its name implies on all platforms, i.e. instances created with this parameter do not accept or send remote commands, see bug 650078. That means that such instances won't be re-used. Also when using this argument a new instance is created in any case.-override /path/to/override.iniLoad the specified override.ini file to override application.ini (browser/app/application.ini). This can be used to suppress the Migration Wizard at startup by loading the following override.ini. Firefox only. [XRE] EnableProfileMigrator=0-ProfileManagerStart with Profile Manager. Short form: -P without a profile name. -P "profile_name"Bypass Profile Manager and launch application with the profile named profile_name. Useful for dealing with multiple profiles. Note profile_name is case sensitive. If you don't specify a profile name then the profile manager is opened instead. You must use an upper case P on Linux with versions older than 7.x, as there lower case invokes Purify mode (memory and leak detection). Other platforms accept both upper and lower case. firefox -P "Joel User"-profile "profile_path"Start with the profile with the given path. Firefox, Thunderbird and SeaMonkey2.x only. "profile_path" can either be an absolute path ("/path/to/profile") or a relative path ("path/to/profile"). Note: On Mac OS X specifying a relative path is not supported anymore from Firefox 4.0 and up due to a regression, see bug 673955.Browser-browserStart with the browser component. Firefox and SeaMonkey only. -foregroundMake this instance the active application. -headlessRuns Firefox in headless mode, which is very useful for purposes such as debugging and automated testing. Available in Firefox 55+ on Linux, and Firefox 56+ on Windows/Mac OS X. -new-tab URLOpen URL in a new tab. Firefox and SeaMonkey2.x only. -new-window URLOpen URL in a new window. Firefox and SeaMonkey2.x only. -preferencesOpen Options/Preferences window. Firefox and SeaMonkey2.x only. -privateOpens Firefox in permanent private browsing mode. Firefox 3.6 and later only. May not be applicable in older Ubuntu for Firefox 20 and later, confirmed to work in 14.04 -private-windowOpens a new private browsing window in an existing instance of Firefox. Firefox 20 and later only. -private-window URLOpen URL in a new private browsing window. If a private browsing window is already open, a new tab is opened in the existing window. Firefox 29 and later only. Does not work in Firefox 31 on linux mint 17 nor on Firefox 48 on Windows 7. URL opens in a non-private window. -search termSearch term with your default search engine. Firefox and SeaMonkey 2.1 and later only. -setDefaultBrowserSet the application as the default browser. Firefox only. -url URLOpen URL in a new tab or window, depend on the browser option. -url can be omitted. You may list multiple URLs, separated by spaces. Firefox and SeaMonkey only. Note: When opening multiple URLs, Firefox always opens them as tabs in a new window. firefox www.mozilla.com firefox www.mozilla.com developer.mozilla.orgMail/News-addressbookStart with address book. Thunderbird and SeaMonkey only. -compose message_optionsStart with mail composer. See syntax rules. Thunderbird and SeaMonkey only. thunderbird -compose "[email protected]"Start with the mail client. Thunderbird and SeaMonkey only. -news news_URLStart with the news client. If news_URL (optional) is given, open the specified newsgroup. Thunderbird and SeaMonkey only. thunderbird -news news://server/group-optionsOpen Options/Preferences window. Thunderbird only. -offlineStart with the offline mode. Thunderbird and SeaMonkey only. -setDefaultMailSet the application as the default email client. Thunderbird only. Calendar-calendarStart with the calendar client. Sunbird only. -showdate dateShow your schedule of the given date. Sunbird only. sunbird -showdate 08/04/2008-subscribe URL or -url URLSubscribe to the given URL. Sunbird only. Other Components-chatStart with the IRC client, ChatZilla, if installed. -devtoolsStart with native Developer Tools opened. -editor URL or -edit URLStart with editor (Composer) for the given URL (where URL is optional). SeaMonkey only. seamonkey -edit www.mozilla.org-inspector URLStart with the DOM Inspector, if installed, and inspect the given URL (where URL is optional). -jsdebuggerStart application with Browser Toolbox (formerly Browser Debugger). That is different to Venkman debugger (see option -venkman). -jsconsoleStart application with the Error Console, or, in Firefox, the Browser Console. -purgecachesGecko (layout engine) has a javascript cache, which is not reset on startup. This clears it. -start-debugger-server portFirefox only. Start the debugger server on port. This will enable another instance of Firefox to connect the Firefox Developer Tools to this Firefox instance. See the article on remotely debugging Firefox Desktop. The port argument is optional, and if it is omitted, the server will listen on port 6000. -venkmanStart with the JavaScript debugger, Venkman, if installed. XULRunner-app /path/to/application.iniStart a new process running the XULRunner application at path/to. Also works with Firefox version 3 and above. --install-app path/to/myapplication.(xpi|xulapp)Installs the XULRunner application at path/to onto the system. Applications are installed into the default location for your system (program files|Applications|usr/lib) at vendorname/applicationName. Applications may be uninstalled per usual methods for your system. "C:\Program Files\Mozilla XULRunner\1.8.0.4\xulrunner\xulrunner.exe" --install-app "C:\Users\Billdo\Desktop\myapplication.xpi" /opt/xulrunner/1.8.0.4/xulrunner/xulrunner --install-app ~/Desktop/myapplication.xulapp /Library/Frameworks/XUL.framework/xulrunner-bin --install-app ~/Desktop/myapplication.xpi--register-globalRegisters XULRunner on the system for all users. Must be run as admin / root. --register-userRegisters XULRunner for a single user. --unregister-globalUnregisters XULRunner for all users. --unregister-userUnregisters XULRunner for a single user. Chrome-chrome chrome_URLLoad the specified chrome. firefox -chrome chrome://inspector/content-register chrome_URLRegister the specified chrome, but do not start application. Add-onsGecko 1.9.2 note -install-global-extension and -install-global-theme have been removed from Gecko 1.9.2 and upwards. -install-global-extension /path/to/extensionInstalls the extension into the application directory. The parameter is the path to the extension. You must have administrative privileges. -install-global-theme /path/to/themeSame as above, but for themes. You must have administrative privileges. Note: Since Firefox 2.0.0.7, use of the -install-global-extension and -install-global-theme command line arguments have been restricted to only allow installing add-ons that are on local disks or mapped drives. Installing from a network share directly will no longer succeed. -safe-modeLaunches the application with all extensions disabled, for that launch only. (Extensions are not loaded, but are not permanently disabled in the Extension Manager data source). Locale-UILocale localeStart with locale resources as UI Locale. firefox -UILocale en-USRemote control-remote remote_commandThis feature was removed in Firefox 36.0, restored in 36.0.1 and removed again in 39.0. See bug 1080319. Execute the specified remote_command in an already running application process. firefox -remote "openURL(www.mozilla.org, new-tab)"This option is only available on X-Windows Unix platforms. Miscellaneous-attach-consoleWrite messages for the debugging console into the window which launched the application instead of opening a new window for the debugging messages. Only supported on the Windows operating system. -consoleStart application with a debugging console. Note: Windows only. -h or -help or -?Print the list of all available command line options. Note that on Windows this only works with a redirection such as |more (bug 355889). This option is available only in a command console. -osintTells the application that it is being launched by the OS shell. This should not be specified unless the caller provides all of the functionality provided by the OS shell when launching the application (bug 384384). -requestPendingTells the application that there will be a Windows DDE request to open the same url specified on the command line. This should not be specified unless the caller provides all of the functionality provided by the OS shell when launching the application (bug 354005). -silentDon't open default windows. Useful with those command-line arguments that open their own windows but don't already prevent default windows from opening. Firefox, Thunderbird3.x and SeaMonkey2.x only. -trayStart application minimized to system tray. Useful with autorun. -v or -versionPrint application version. Note that on Windows this only works with a redirection such as |more (bug 355889). This option is available only in a command console. X11 optionsThese options are only available for an application build for and running atop the X11/X.org display and window system to be found on Linux and other Unix-based systems. --class=WM_CLASSSet the WM_CLASS resource class of the X11 windows created by the application. --display=DISPLAYSet the X display to use. --g-fatal-warningsMake all warnings fatal. --syncMake X calls synchronous. Other options need to be documented
ReferencesOriginal Document Information
developer.mozilla.org |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|