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
官方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"
    ]
}