0

The icon is there, but it wont activate when clicked. I'm using Sublime Text 3.

2 Answers2

0

The reason it doesn't work with every browser under the sun is that every browser's API is different. It does work with Chrome and Safari - there is a link to extensions right there in the README.

MattDMo
  • 100,794
  • 21
  • 241
  • 231
  • Thanks for the reply, I meant that chrome extension doesn't work – Beqa shekiladze Jul 12 '20 at 07:33
  • Looking at the Chrome extension page, it says it was last updated in 2015, so there's a very good chance that the Chrome API has changed enough that the extension doesn't work anymore. – MattDMo Jul 12 '20 at 18:17
0

This answer directly helped me:

How do I install LiveReload on Sublime Text 3?

I was able to address this issue by updating LiveReload's settings from within Sublime Text 3 via:

Preferences > Package Settings > LiveReload > Settings - Default

and updating:

    {
        "enabled_plugins": []
    }

to:

    {
        "enabled_plugins": [
            "SimpleReloadPlugin",
            "SimpleRefresh"]
    }
dmajin
  • 1
  • 4