Reload on Focus

Reload a tab whenever it receives the focus.

Reload on Focus là gì?

Reload on Focus là một tiện ích mở rộng Chrome được phát triển bởi Stephen Blott, và tính năng chính của nó là "Reload a tab whenever it receives the focus.".

Ả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 on Focus

Tải xuống các tệp mở rộng Reload on Focus 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 is a very simple extension which (for pages matching a list of RegExps) reloads a tab each time it receives the focus.

It is intended for developers who work a bit, then revisit Chrome to view the fruit of their labors.                    

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

Tên Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
URL Chính Thức https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Mô tả Reload a tab whenever it receives the focus.
Kích Thước Tệp 37.33 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-01-05
Ngày Phát Hành 2019-01-01
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Stephen Blott
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/smblott-github/chrome-reload-on-focus
URL Trang Trợ Giúp https://github.com/smblott-github/chrome-reload-on-focus/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload on Focus",
    "version": "1.0",
    "description": "Reload a tab whenever it receives the focus.",
    "minimum_chrome_version": "51.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rof-content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rof-background.js"
        ]
    },
    "options_ui": {
        "page": "rof-options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/rof-off-512x512.png"
    }
}