Auto Reloader

Refresh matching tab(s) after a period of inactivity.

Auto Reloader là gì?

Auto Reloader là một tiện ích mở rộng Chrome được phát triển bởi BestMile, và tính năng chính của nó là "Refresh matching tab(s) after a period of inactivity.".

Ả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 Auto Reloader

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

                        Automatically reloads the tab(s) matching a given (partial) URL after a configurable duration of inactivity, with the possibility to show a confirm dialog before reloading.

The reload delay is activated by the first click on the page, so the reload will not be triggered if no click happens on the page after it (re)loaded. For this scenario, a second reload delay can be configured that will reload the page without confirmation event without a first activity on the page.

Features

* Prevents reloading the page if someone is actively using it (timeout reset on click)
* Display a confirmation dialog from the current page (if available) before reloading the page
* Allows to set a second delay that will reload the page without confirmation
* Checks for a css class after the page has loaded and forces a reload if not found (used the check that the page loaded successfully)
* Can send a heartbeat post to a given remote server on each load of the target page
* ALL ABOVE OPTIONS ARE CONFIGURABLE AND CAN BE DISABLED.                    

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

Tên Auto Reloader Auto Reloader
ID pdbciklhbdhljpodlfcnhhplipgibeod
URL Chính Thức https://chrome.google.com/webstore/detail/auto-reloader/pdbciklhbdhljpodlfcnhhplipgibeod
Mô tả Refresh matching tab(s) after a period of inactivity.
Kích Thước Tệp 17.76 KB
Số Lần Cài Đặt 434
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2016-08-10
Ngày Phát Hành 2016-08-10
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển BestMile
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Reloader",
    "description": "Refresh matching tab(s) after a period of inactivity.",
    "version": "1.3",
    "homepage_url": "https:\/\/github.com\/BestMile\/auto-reloader",
    "minimum_chrome_version": "50",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    }
}