Reload tabs

Reload all of the current window's tabs

Reload tabs란 무엇입니까?

Reload tabs은(는) msskmlrn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reload all of the current window's tabs"입니다.

확장 프로그램 스크린샷

screenshot

Reload tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut.

You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing.

The source code can be found at https://github.com/msskmlrn/reload-tabs.                    

확장 프로그램 기본 정보

이름 Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
공식 URL https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
설명 Reload all of the current window's tabs
파일 크기 6.75 KB
설치 횟수 31
현재 버전 1.0
최근 업데이트 2014-06-06
출시 날짜 2014-06-06
개발자 msskmlrn
결제 유형 free
도움말 페이지 URL https://github.com/msskmlrn/reload-tabs
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload tabs",
    "short_name": "Reload tabs",
    "version": "1.0",
    "description": "Reload all of the current window's tabs",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "reload.js"
        ],
        "persistent": false
    },
    "commands": {
        "reload-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Reload tabs"
        }
    },
    "permissions": [
        "tabs"
    ]
}