LiveReload++

Watches a port and reloads the page if needed.

LiveReload++คืออะไร?

LiveReload++ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codePlanet และคุณลักษณะหลักของมันคือ "Watches a port and reloads the page if needed."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย LiveReload++ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LiveReload++ LiveReload++
ID ciehpookapcdlakedibajeccomagbfab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab
คำอธิบาย Watches a port and reloads the page if needed.
ขนาดไฟล์ 16.46 KB
จำนวนการติดตั้ง 5,023
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2017-01-09
วันที่เผยแพร่ 2017-01-09
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา codePlanet
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}