Auto Reload IDT

Refresh automatically pages on a selected interval of seconds or specific time.

Auto Reload IDTคืออะไร?

Auto Reload IDT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Giovani Silva และคุณลักษณะหลักของมันคือ "Refresh automatically pages on a selected interval of seconds or specific time."

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

screenshot

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

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

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

                        Refresh automatically pages on a selected interval of seconds or specific time.                    

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

ชื่อ Auto Reload IDT Auto Reload IDT
ID fnkcgkngofnmodlbhmkfkloggnldomng
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/auto-reload-idt/fnkcgkngofnmodlbhmkfkloggnldomng
คำอธิบาย Refresh automatically pages on a selected interval of seconds or specific time.
ขนาดไฟล์ 47.58 KB
จำนวนการติดตั้ง 505
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2018-06-06
วันที่เผยแพร่ 2018-06-06
คะแนน 4.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Giovani Silva
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Reload IDT",
    "description": "Refresh automatically pages on a selected interval of seconds or specific time.",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "storage"
    ],
    "browser_action": {
        "default_icon": "reloadBtn.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/inicialization.js",
                "scripts\/jquery.js",
                "scripts\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "reloadBtn.png",
        "48": "reloadBtn.png",
        "128": "reloadBtn.png"
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}