Reload on Focus

Reload a tab whenever it receives the focus.

什么是Reload on Focus?

Reload on Focus是由Stephen Blott开发的Chrome扩展程序,该扩展的主要功能是“Reload a tab whenever it receives the focus.”。

扩展截图

screenshot

下载Reload on Focus扩展crx文件

下载Reload on Focus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
官方URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
简介 Reload a tab whenever it receives the focus.
文件大小 37.33 KB
安装次数 93
当前版本 1.0
更新时间 2019-01-05
上架时间 2019-01-01
评分 5.00/5 共2次评分
开发者 Stephen Blott
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/smblott-github/chrome-reload-on-focus
帮助页面URL https://github.com/smblott-github/chrome-reload-on-focus/issues
支持的语言 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"
    }
}