Auto Refresh

Auto refresh for develop

Auto Refreshคืออะไร?

Auto Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย selvn และคุณลักษณะหลักของมันคือ "Auto refresh for develop"

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

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

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

                        auto refresh your page, according to a url which return true to refresh or false not to refresh.
It is useful when you are writing html. config a page to monitor files change. If changed, this plugin will auto refresh.                    

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

ชื่อ Auto Refresh Auto Refresh
ID ghhlhgfnlmfajjfppidbifgdnoheojon
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/auto-refresh/ghhlhgfnlmfajjfppidbifgdnoheojon
คำอธิบาย Auto refresh for develop
ขนาดไฟล์ 141 KB
จำนวนการติดตั้ง 71
เวอร์ชันปัจจุบัน 1
อัปเดตครั้งล่าสุด 2013-06-23
วันที่เผยแพร่ 2013-06-23
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา selvn
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "version": "1",
    "manifest_version": 2,
    "description": "Auto refresh for develop",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.8.3.min.js",
                "script.js"
            ],
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}