tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

webconsole-commands.ftl (928B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 # These strings are used inside the Web Console commands
      6 # which can be executed in the Developer Tools, available in the
      7 # Browser Tools sub-menu -> 'Web Developer Tools'
      8 
      9 # Usage string for :block command
     10 webconsole-commands-usage-block =
     11   :block URL_STRING
     12 
     13   Start blocking network requests
     14 
     15     It accepts only one URL_STRING argument, an unquoted string which will be used to block all requests whose URL includes this string.
     16     Use :unblock or the Network Monitor request blocking sidebar to undo this.
     17 
     18 # Usage string for :unblock command
     19 webconsole-commands-usage-unblock =
     20   :unblock URL_STRING
     21 
     22   Stop blocking network requests
     23 
     24     It accepts only one argument, the exact same string previously passed to :block.