Live Reload Browser Page

The plugin for live reloading of a browser page during web development.

Live Reload Browser Page란 무엇입니까?

Live Reload Browser Page은(는) https://live-reload-browser-page.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The plugin for live reloading of a browser page during web development."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Live Reload Browser Page 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a browser plugin that reloads a browser page in real time.

► Pros
• Friendly user interface with mini panel.
• Configurable host and port for connection.
• Supports remote server connection.
• SSL connections, if need.
• Partial reload of a browser page (CSS, JavaScript, HTML, etc).
• Sound and Visual notification after the browser page reloads.
• Works outside a web root and with a web root.
• It does not require any web scripts to be connected for this plugin to work.
• In «Live Reload Browser Page-Pro» version has built-in programs:
    ° «Live Alert Browser Page» (https://live-alert-browser-page.com)
    ° «Live HTML validator» (https://live-html-validator.com)

► Official website «Live Reload Browser Page»
https://live-reload-browser-page.com

► Packages and documentation
https://live-reload-browser-page.com/documentation
https://github.com/Yuriy-Svetlov/live-reload-bp

► You may also want to use:
https://live-alert-browser-page.com
https://live-html-validator.com

► You can install the Professional version of this plugin here:
https://chrome.google.com/webstore/detail/live-reload-browser-page/njclcjfoekkdmgdgdfdididdffpkcfgj                    

확장 프로그램 기본 정보

이름 Live Reload Browser Page Live Reload Browser Page
ID ohidagfdjacdilgoklcmbjfkmplciemd
공식 URL https://chromewebstore.google.com/detail/live-reload-browser-page/ohidagfdjacdilgoklcmbjfkmplciemd
설명 The plugin for live reloading of a browser page during web development.
파일 크기 3.83 MB
설치 횟수 197
현재 버전 1.0.2
최근 업데이트 2023-12-14
출시 날짜 2021-11-20
평점 5.00/5 총 1 개의 평점
개발자 https://live-reload-browser-page.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://live-reload-browser-page.com
도움말 페이지 URL https://live-reload-browser-page.com/contacts
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Live Reload Browser Page",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "The plugin for live reloading of a browser page during web development.",
    "icons": {
        "16": "images\/off_19x19_v1.png",
        "32": "images\/off_32x32_v1.png",
        "48": "images\/off_48x48_v1.png",
        "128": "images\/off_128x128_v1.png"
    },
    "options_page": "build\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "build\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/off_19x19_v1.png",
        "default_popup": "build\/index.html"
    },
    "permissions": [
        "storage"
    ]
}