Hard reload

Adds a hard reload button to chrome.

Hard reload là gì?

Hard reload là một tiện ích mở rộng Chrome được phát triển bởi Spuffynism, và tính năng chính của nó là "Adds a hard reload button to chrome.".

Tải xuống tệp CRX của tiện ích mở rộng Hard reload

Tải xuống các tệp mở rộng Hard reload dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hard reload Hard reload
ID bdmblpnglgiabhlbpkefgehelmlgodjd
URL Chính Thức https://chrome.google.com/webstore/detail/hard-reload/bdmblpnglgiabhlbpkefgehelmlgodjd
Mô tả Adds a hard reload button to chrome.
Kích Thước Tệp 4.05 KB
Số Lần Cài Đặt 383
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-05-26
Ngày Phát Hành 2018-05-26
Đánh Giá 4.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Spuffynism
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Spuffynism/hardreload
Ngôn Ngữ Được Hỗ Trợ 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
}