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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}