Super Refresh

Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.

Super Refresh란 무엇입니까?

Super Refresh은(는) Karl Dreher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window."입니다.

확장 프로그램 스크린샷

screenshot

Super Refresh 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Either click the extension icon, or use the keyboard shortcut (default: Ctrl-Shift-5) to refresh all tabs in the open window. As of version 1.1.1 you are able to set options for the extension:

Include Tabs with Audio (default: Off): This setting allows refreshing only tabs that are not audible. Refresh your tabs while not interrupting your music!

Always bypass cache (default: Off): Control whether you want to bypass cache whenever Super Refresh is invoked.                    

확장 프로그램 기본 정보

이름 Super Refresh Super Refresh
ID dacnjaopeolhngffkagipnnlilhlmkhg
공식 URL https://chromewebstore.google.com/detail/super-refresh/dacnjaopeolhngffkagipnnlilhlmkhg
설명 Refresh all the tabs! Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.
파일 크기 17.54 KB
설치 횟수 30
현재 버전 1.1.1
최근 업데이트 2021-05-16
출시 날짜 2021-01-26
평점 4.50/5 총 2 개의 평점
개발자 Karl Dreher
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/karldreher/Super-Refresh
도움말 페이지 URL https://github.com/karldreher/Super-Refresh/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Super Refresh",
    "version": "1.1.1",
    "description": "Refresh all the tabs!  Click on the extension icon or use the keyboard shortcut to reload all open tabs in the current window.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "refreshAll": {
            "suggested_key": {
                "default": "Shift+Ctrl+5"
            },
            "description": "Refresh all the tabs!"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}