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是由ccrawford1250開發的Chrome擴展程式,該擴展的主要功能是“Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.”。

擴展截圖

screenshot

下載Open Frame擴展crx文件

下載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
官方網址 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"
    ]
}