Live Reload

Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.

Live Reloadとは何ですか?

Live ReloadはBlaise Kalによって開発されたChromeの拡張機能で、その主な機能は「Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.」です。

拡張機能のスクリーンショット

screenshot

Live Reload拡張機能のCRXファイルをダウンロード

Live Reload拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Monitors included scripts, stylesheets and/or frames on a page for changes using configurable rules. Reloads the entire page or just the source file that was changed.


Not sure why your page is not reloading? — Debug your rules by navigating to chrome://extensions, find the Live Reload tile, click "background page", visit the "Console" tab and monitor "All levels".


Due to security restrictions in web extensions, files served using the file system (file://...) *cannot* be monitored. A quick and easy workaround is to serve local files over http. See https://github.com/blaise-io/live-reload/issues/3#issuecomment-358755120


Doesn't work? Need a feature?  — Please create an issue on Github (https://github.com/blaise-io/live-reload/issue) or send a mail to [email protected].                    

拡張機能の基本情報

名前 Live Reload Live Reload
ID jcejoncdonagmfohjcdgohnmecaipidc
公式URL https://chrome.google.com/webstore/detail/jcejoncdonagmfohjcdgohnmecaipidc
説明 Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.
ファイルサイズ 38.22 KB
インストール数 8,244
現在のバージョン 1.8.4
最終更新日 2021-08-07
公開日 2020-06-30
評価 4.78/5 合計 18 レビュー
開発者 Blaise Kal
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/blaise-io/live-reload
ヘルプページのURL https://github.com/blaise-io/live-reload/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Live Reload",
    "version": "1.8.4",
    "description": "Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.",
    "homepage_url": "https:\/\/github.com\/blaise-io\/live-reload#readme",
    "permissions": [
        "",
        "storage",
        "tabs",
        "webNavigation",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "\/polyfill.js",
            "\/background.js"
        ]
    },
    "icons": {
        "128": "\/icons\/icon.png"
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": "\/icons\/icon.png",
        "default_popup": "\/popup.html"
    },
    "options_ui": {
        "page": "\/options.html"
    },
    "web_accessible_resources": [
        "\/polyfill.js"
    ]
}