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
官方網址 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"
    }
}