Tab auto reloader

This extension reloads the current tab at a chosen interval.

Tab auto reloader là gì?

Tab auto reloader là một tiện ích mở rộng Chrome được phát triển bởi https://denilson.sa.nom.br, và tính năng chính của nó là "This extension reloads the current tab at a chosen interval.".

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

screenshot
screenshot

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

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

                        This Chrome extension reloads (refreshes) the current tab at a chosen interval.

* Free and open-source.
* No (extra) permissions required.
* Easy-to-use.
* The reload (refresh) interval can be different for each tab.

https://github.com/denilsonsa/crx-reload-tab/                    

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

Tên Tab auto reloader Tab auto reloader
ID knnahnemielbnanghaphjgheamgcjjcb
URL Chính Thức https://chromewebstore.google.com/detail/tab-auto-reloader/knnahnemielbnanghaphjgheamgcjjcb
Mô tả This extension reloads the current tab at a chosen interval.
Kích Thước Tệp 14.36 KB
Số Lần Cài Đặt 26,500
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2018-04-23
Đánh Giá 4.90/5 Tổng số 99 Đánh Giá
Nhà Phát Triển https://denilson.sa.nom.br
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/denilsonsa/crx-reload-tab/
URL Trang Trợ Giúp https://github.com/denilsonsa/crx-reload-tab/issues
URL Trang Chính Sách Bảo Mật http://denilson.sa.nom.br/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab auto reloader",
    "short_name": "Tab reloader",
    "description": "This extension reloads the current tab at a chosen interval.",
    "version": "1.1",
    "homepage_url": "https:\/\/github.com\/denilsonsa\/crx-reload-tab\/",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Reload this page every\u2026"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}