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
Eメール [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"
    }
}