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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย howanghk และคุณลักษณะหลักของมันคือ "Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Refresh Active Frame

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}