DOM Auto Refresh

Automatically refresh page when DOM has changed

DOM Auto Refreshคืออะไร?

DOM Auto Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kknordbo และคุณลักษณะหลักของมันคือ "Automatically refresh page when DOM has changed"

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

screenshot
screenshot

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

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

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

                        Automatically refresh the page when there has been a change to DOM (Document Object Model). For instance, it will refresh a page if a "click to refresh" popup appears. A useful tool for keeping content up to date without any user interaction. Can also set an interval for how often the page should be refreshed.                    

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

ชื่อ DOM Auto Refresh DOM Auto Refresh
ID ocmlgbpgpklpjaegeemejpafhbijgdkc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/dom-auto-refresh/ocmlgbpgpklpjaegeemejpafhbijgdkc
คำอธิบาย Automatically refresh page when DOM has changed
ขนาดไฟล์ 70.32 KB
จำนวนการติดตั้ง 503
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2016-05-14
วันที่เผยแพร่ 2016-05-14
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา kknordbo
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM Auto Refresh",
    "version": "0.0.1",
    "description": "Automatically refresh page when DOM has changed",
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ],
    "manifest_version": 2
}