Reload

A simple Reload button

Reload là gì?

Reload là một tiện ích mở rộng Chrome được phát triển bởi MK, và tính năng chính của nó là "A simple Reload button".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

Tải xuống các tệp mở rộng 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

                        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.                    

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

Tên Reload Reload
ID fcofhoajikoooeongdbjbgnjpmgehgja
URL Chính Thức https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja
Mô tả A simple Reload button
Kích Thước Tệp 7.57 KB
Số Lần Cài Đặt 1,852
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2021-01-15
Ngày Phát Hành 2016-11-19
Đánh Giá 4.32/5 Tổng số 22 Đánh Giá
Nhà Phát Triển MK
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}