Open Frame

Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.

Open Frameคืออะไร?

Open Frame เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ccrawford1250 และคุณลักษณะหลักของมันคือ "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Open Frame ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window. This extension will copy and use the frame URL to open the new tab or window.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
คำอธิบาย Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
ขนาดไฟล์ 10.83 KB
จำนวนการติดตั้ง 4,616
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-07-24
วันที่เผยแพร่ 2023-07-24
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา ccrawford1250
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Frame",
    "version": "1.0",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "description": "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "contextMenus"
    ]
}