RemoteLiveReload

Live Reload is a system to automatically reload a web page when the source files for that web page are changed. This extension…

Что такое RemoteLiveReload?

RemoteLiveReload - это расширение Chrome, разработанное remotelivereload, и его основная функция - "Live Reload is a system to automatically reload a web page when the source files for that web page are changed. This extension…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения RemoteLiveReload

Скачайте файлы расширений RemoteLiveReload в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Live Reload is a system to automatically reload a web page when the source files for that web page are changed.

This extension connects to a live-reload server (local or remote) for example LiveReload (for Windows or Mac) or guard-livereload  (for Linux).

The extension tries to connect to a live reload server on the domain for the current web page.                    

Основная информация о расширении

Название RemoteLiveReload RemoteLiveReload
ID jlppknnillhjgiengoigajegdpieppei
Официальный URL https://chromewebstore.google.com/detail/remotelivereload/jlppknnillhjgiengoigajegdpieppei
Описание Live Reload is a system to automatically reload a web page when the source files for that web page are changed. This extension…
Размер файла 68.84 KB
Количество установок 7,314
Текущая Версия 0.0.46
Последнее Обновление 2014-12-15
Дата публикации 2014-12-15
Рейтинг 3.67/5 Всего 36 оценок
Разработчик remotelivereload
Тип оплаты free
Официальный сайт расширения https://github.com/bigwave/livereload-extensions
URL страницы помощи https://github.com/bigwave/livereload-extensions/issues
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RemoteLiveReload",
    "version": "0.0.46",
    "background": {
        "scripts": [
            "global.js",
            "global-chrome.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injected.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "livereload.js"
    ],
    "permissions": [
        "tabs",
        ""
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Enable LiveReload",
        "default_icon": {
            "19": "IconDisabled.png",
            "38": "[email protected]"
        }
    }
}