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”。
擴展截圖
下載Refresh Active Frame擴展crx文件
下載Refresh Active Frame擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | imcfppeifknphfhaibbbidhnjecmfohi |
官方網址 | 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" ] } |