Open Frame

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

What is Open Frame?

Open Frame is a Chrome extension developed by ccrawford1250, and its main feature is "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Extension Screenshots

screenshot

Download Open Frame Extension CRX File

Download Open Frame extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
Official URL https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Description Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
File Size 10.83 KB
Installation Count 4,616
Current Version 1.0
Last Updated 2023-07-24
Publish Date 2023-07-24
Rating 5.00/5 Total 8 Ratings
Developer ccrawford1250
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}