K-Meleon
Many useful features are hidden in K-Meleon's "about" pages. The about protocol is similar to other Mozilla-derived browsers like Firefox, SeaMonkey, or Pale Moon. To access these features:
about:config | Manually modify user preferences. There is a search box on the top line of the page but you can also filter preferences via the address bar. For example, if you wanted to show only toolband preferences that position the toolbars in K-Meleon you could enter about:config?filter=toolband into the address bar. |
about:addons | Manage XUL-based extensions and third-party plugins. Neither kplugins nor macros will appear here. Some extensions like GreaseMonkey may add tabs to this page. |
about:downloads | View and manage current or recent download activity. |
about:home | Open the browser's default home page. Changing the home page for a profile will not change the browser's default. |
about: | List version, copyright licenses, useragent, and attributions for K-Meleon. Browser menu: Help > About K-Meleon |
about:plugins | List currently installed third-party plug-ins recognized by K-Meleon. Browser menu: Help > About Plugins |
about:blank | Display a blank page. This is sometimes used for new windows or even as a homepage to open windows more quickly. |
about:cache | Display browser cache information. |
about:mozilla | Display Mozilla-related text. |
about:about | List all about pages. |
about:credits | Display a list of people who have "made a significant investment of time, with useful results, into Mozilla project-governed activities" (historically), and people who have significantly contributed to the Pale Moon project. |
about:license | View the specific license agreements for the browser's engine. |
about:logo | View the browser's logo. |
about:memory | View the memory usage of K-Meleon. |
about:networking | Display networking information. |
about:performance | Display performance information about K-Meleon sub-processes. |
about:permissions | Manage website permissions. |
about:preferences | Open the preferences for the browser engine. Note that some of these preferences are duplicates of those in the preference dialog and some are intended for Firefox, SeaMonkey, or Pale Moon. |
about:support | Display troubleshooting information. |
about:buildconfig | View details about K-Meleon's build options. |
about:neterror | Display an error message. |
about:serviceworkers | This is not enabled in K-Meleon 76. |
about:telemetry | This is not enabled in K-Meleon 76. |
about:webrtc | This is not enabled in K-Meleon 76. |
about:cache?device=memory | Deprecated for about:cache. |
about:cache?device=disk | Deprecated for about:cache. |
about:newaddon | Open about:blank in K-Meleon 76. Firefox uses this URL for a dialog prompted when installing add-ons from the file manager. |
about:sync-log | K-Meleon does not implement the synchronization protocol from Firefox Sync. |
javascript: | Not implemented in K-Meleon 76. |
about:profiles | Not implemented in K-Meleon 76. |
If you frequently use one of the hidden about pages it may be helpful to add a menu option. The simplest way is to create a bookmark for the page.
You can also create menu entries for the about pages with macros. Siria's About:About macro from the forums will add a menu with many of the about pages. If you only need a menu entry for a single page, it's even simpler. Compare the two examples below to see how.
To create menu entries for about:downloads or about:addons simply:
# about:downloads # ----------------------------------------------------------- _about_downloads_open{ open( "about:downloads" ); } # Menu entry: _about_downloads_BuildMenu{ setmenu("&View",macro,"Downloads",_about_downloads_open,-1); } # Build menu at startup: $OnInit=$OnInit."_about_downloads_BuildMenu;"; # about:addons # ----------------------------------------------------------- _about_addons_open{ open( "about:addons" ); } # Menu entry: _about_addons_BuildMenu{ setmenu("Preferences",macro,"Manage Add-ons",_about_addons_open,-1); } # Build menu at startup: $OnInit=$OnInit."_about_addons_BuildMenu;";