Easy Auto Refresh

Auto-refresh and auto-reload pages after any number of seconds.

Easy Auto Refresh là gì?

Easy Auto Refresh là một tiện ích mở rộng Chrome được phát triển bởi https://www.dummysoftware.com, và tính năng chính của nó là "Auto-refresh and auto-reload pages after any number of seconds.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Easy Auto Refresh 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 web pages after any number of seconds.

Features:
* Refresh pages after a set number of seconds.
* Set different delays per page or tab.
* Remembers your settings per page.
* Remembers web page scroll position.

Simply enter the number of seconds between reloads and click Start. You can specify different settings per tab. Preferences are saved per web page URL. The countdown pauses while typing. To stop refreshing of the tab, just click Stop.

Register your copy of Easy Auto Refresh to unlock advanced options, including:

* Save preferences per web page URL or per web site domain.
* Enable random countdown intervals.
* Choose specific times of day.
* Reload all tabs in the window.
* Automatically click a button, link, or element on the page.
* Navigate to a url from a list at each countdown interval.
* Show a notification and play a sound when text is found in the page.
* Display the last and next refresh time.
* Clear cache.
* Receive access to future enhancements.

Privacy Policy and Terms of Service

By installing this add-on, you agree to the following privacy policy http://dummysoftware.com/chrome-privacy.html                    

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

Tên Easy Auto Refresh Easy Auto Refresh
ID aabcgdmkeabbnleenpncegpcngjpnjkc
URL Chính Thức https://chromewebstore.google.com/detail/easy-auto-refresh/aabcgdmkeabbnleenpncegpcngjpnjkc
Mô tả Auto-refresh and auto-reload pages after any number of seconds.
Kích Thước Tệp 53 KB
Số Lần Cài Đặt 1,435,889
Phiên Bản Hiện Tại 6.4
Cập Nhật Lần Cuối 2024-02-08
Ngày Phát Hành 2019-08-09
Đánh Giá 3.92/5 Tổng số 1971 Đánh Giá
Nhà Phát Triển https://www.dummysoftware.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.dummysoftware.com/easy-auto-refresh.html
URL Trang Trợ Giúp http://www.dummysoftware.com/easy-auto-refresh.html
URL Trang Chính Sách Bảo Mật http://dummysoftware.com/chrome-privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Auto Refresh",
    "version": "6.4",
    "manifest_version": 3,
    "description": "Auto-refresh and auto-reload pages after any number of seconds.",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_icon": {
            "38": "images\/refresh-off-38.png"
        },
        "default_title": "Easy Auto Refresh",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "browsingData",
        "notifications",
        "storage",
        "scripting",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/keypress.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "images\/easy-auto-refresh-48x48.png",
        "128": "images\/easy-auto-refresh-128x128.png"
    }
}