Reload

A simple Reload button

Reloadคืออะไร?

Reload เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MK และคุณลักษณะหลักของมันคือ "A simple Reload button"

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

screenshot

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

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

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

                        A simple Reload button, for those who want one to the right of the Address Bar.  (Stop function not included; see below.)

To save RAM, the extension uses an event page rather than a persistent background page.  Hopefully it won't lag during heavy disk access.

For a Stop button, see:
https://chrome.google.com/webstore/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn

***
Changelog

0.4: Updated icons to match Chrome's new Material theme.

0.3: Removed "tabs" permission.  Turns out it isn't needed to call chrome.tabs.reload.                    

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

ชื่อ Reload Reload
ID fcofhoajikoooeongdbjbgnjpmgehgja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja
คำอธิบาย A simple Reload button
ขนาดไฟล์ 7.57 KB
จำนวนการติดตั้ง 1,852
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2021-01-15
วันที่เผยแพร่ 2016-11-19
คะแนน 4.32/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา MK
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload",
    "description": "A simple Reload button",
    "version": "0.4",
    "manifest_version": 2,
    "icons": {
        "16": "reload_16.png",
        "24": "reload_24.png",
        "32": "reload_32.png",
        "48": "reload_48.png",
        "128": "reload_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "reload_16.png",
            "24": "reload_24.png",
            "32": "reload_32.png"
        },
        "default_title": "Reload"
    }
}