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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Blaise Kal และคุณลักษณะหลักของมันคือ "Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Live Reload

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}