Reload on Focus

Reload a tab whenever it receives the focus.

Reload on Focusคืออะไร?

Reload on Focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stephen Blott และคุณลักษณะหลักของมันคือ "Reload a tab whenever it receives the focus."

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

screenshot

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

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

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

                        This is a very simple extension which (for pages matching a list of RegExps) reloads a tab each time it receives the focus.

It is intended for developers who work a bit, then revisit Chrome to view the fruit of their labors.                    

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

ชื่อ Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
คำอธิบาย Reload a tab whenever it receives the focus.
ขนาดไฟล์ 37.33 KB
จำนวนการติดตั้ง 93
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-01-05
วันที่เผยแพร่ 2019-01-01
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Stephen Blott
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/smblott-github/chrome-reload-on-focus
URL หน้าช่วยเหลือ https://github.com/smblott-github/chrome-reload-on-focus/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload on Focus",
    "version": "1.0",
    "description": "Reload a tab whenever it receives the focus.",
    "minimum_chrome_version": "51.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rof-content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rof-background.js"
        ]
    },
    "options_ui": {
        "page": "rof-options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/rof-off-512x512.png"
    }
}