LiveReload++

Watches a port and reloads the page if needed.

O que é LiveReload++?

LiveReload++ é uma extensão do Chrome desenvolvida por codePlanet, e sua principal característica é "Watches a port and reloads the page if needed.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão LiveReload++

Baixe arquivos de extensão LiveReload++ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Provides extended support for LiveReload (livereload.com) in Chrome. This version includes support for options such as host and port. 

It appears the original project is no longer active. This extension has been rewritten as to not violate the license from the original project. Due to this, there might be some missing features. If you would like additional features added, please make a request.                    

Informações Básicas da Extensão

Nome LiveReload++ LiveReload++
ID ciehpookapcdlakedibajeccomagbfab
URL Oficial https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab
Descrição Watches a port and reloads the page if needed.
Tamanho do Arquivo 16.46 KB
Contagem de Instalações 5,023
Versão Atual 0.0.2
Última Atualização 2017-01-09
Data de Publicação 2017-01-09
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor codePlanet
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LiveReload++",
    "description": "Watches a port and reloads the page if needed.",
    "version": "0.0.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/icon-inactive.png"
        },
        "default_title": "Livereload"
    },
    "background": {
        "scripts": [
            "scripts\/eventPage.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation",
        "tabs"
    ]
}