Hard reload

Adds a hard reload button to chrome.

Hard reloadคืออะไร?

Hard reload เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Spuffynism และคุณลักษณะหลักของมันคือ "Adds a hard reload button to chrome."

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

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

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

                        Hard reloads a page, bypassing/ignoring the cache.

To hard reload the active tab's content, either click the button in the taskbar or press Alt+R.

Source code can be found here: https://github.com/Spuffynism/hardreload                    

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

ชื่อ Hard reload Hard reload
ID bdmblpnglgiabhlbpkefgehelmlgodjd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd
คำอธิบาย Adds a hard reload button to chrome.
ขนาดไฟล์ 4.05 KB
จำนวนการติดตั้ง 383
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2018-05-26
วันที่เผยแพร่ 2018-05-26
คะแนน 4.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Spuffynism
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Spuffynism/hardreload
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hard reload",
    "description": "Adds a hard reload button to chrome.",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "hard-reload": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Hard reloads"
        }
    },
    "permissions": [
        "activeTab",
        "browsingData"
    ],
    "browser_action": {
        "default_title": "Hard reload this page",
        "default_icon": "hard_reload.png"
    },
    "manifest_version": 2
}