57

How can I disable internet connection or work offline like Firefox in Chrome? I need to check some errors when Internet is not available.

Ikrom
  • 4,785
  • 5
  • 52
  • 76
  • 3
    Great question. I'd like to check if my HTML5 app works with offline-use and I don't want to turn off my entire internet connection, just disable it for the one page I'm viewing. – bafromca Feb 18 '14 at 18:00
  • 2
    possible duplicate of [Does Chrome have a "Work Offline" option?](http://stackoverflow.com/questions/16091243/does-chrome-have-a-work-offline-option) – Goodwine May 05 '14 at 21:06

4 Answers4

82

offline mode is added to Chrome v45.

Developer tools -> Network tab -> Choose "offline" from selectbox.

enter image description here

Ikrom
  • 4,785
  • 5
  • 52
  • 76
11

Offline switcher is a new handy Chrome Extension to do the job quickly. You can toogle to switch between offline and online mode.

Chrome offline switcher

The add-on is simple, just to set Chrome proxy to an un-existing point.

user160357
  • 865
  • 10
  • 14
Duong Nguyen
  • 830
  • 6
  • 10
4

Under the network tab, go to the THrottling dropdown where you can select different speeds of web and even set it to be offline. This comes very handy when you are working with service workers and want to test your application in offline mode.

enter image description here

Refer to the latest answer: https://stackoverflow.com/a/32607960/2520254

Akshay Gundewar
  • 864
  • 11
  • 30
  • Won't work for existing websocket connections: https://stackoverflow.com/questions/38729050/chrome-disabling-web-sockets-or-closing-a-web-socket-connection – ᴍᴇʜᴏᴠ Apr 23 '22 at 08:32
2

Until Chrome has a feature to disable internet but retains localhost (or local network) connections. The only way I could suggest is to just disconnect the network from the internet manually for your testing.

HyperionX
  • 1,332
  • 2
  • 17
  • 31