Refresh Active Frame

Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame

Refresh Active Frame란 무엇입니까?

Refresh Active Frame은(는) howanghk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension is useful for old-fashioned website built with frames. In the 2000s era, many websites are built with frames, usually with menu as one frame, and the content as another frame. 
In most case when you would like to refresh the content frame only, however when you press the reload button, the browser will brings you back to the entry page.
With this extension, you can have a shortcut key to refresh only the active frame, but not the whole page.
Bonus: This extension works for refreshing iframes too.

How to use:
1. Make sure you clicked into the frame you want to refresh once to let it gain focus.
2. Press the shortcut key or the button besides address bar to refresh only that frame.
3. If the page you are visiting don't use frames, the extension will fallback to reload the whole webpage.

Keyboard shortcuts:
Cmd+Ctrl+R on Mac
Alt+Shift+R on other platforms

You may customize keyboard shortcut in chrome://extensions/shortcuts                    

확장 프로그램 기본 정보

이름 Refresh Active Frame Refresh Active Frame
ID imcfppeifknphfhaibbbidhnjecmfohi
공식 URL https://chromewebstore.google.com/detail/refresh-active-frame/imcfppeifknphfhaibbbidhnjecmfohi
설명 Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame
파일 크기 21.17 KB
설치 횟수 733
현재 버전 1.1
최근 업데이트 2022-07-31
출시 날짜 2015-11-01
평점 4.25/5 총 4 개의 평점
개발자 howanghk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/howanghk/chrome-refresh-active-frame
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Refresh Active Frame",
    "description": "Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame",
    "version": "1.1",
    "icons": {
        "128": "icon-128.png"
    },
    "author": "howang",
    "homepage_url": "https:\/\/www.howang.hk\/",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon-19.png",
        "default_title": "Refresh Active Frame"
    },
    "commands": {
        "refresh-active-frame": {
            "suggested_key": {
                "default": "Alt+Shift+R",
                "mac": "Command+MacCtrl+R"
            },
            "description": "Refresh Active Frame"
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ]
}