Open Frame

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

Was ist Open Frame?

Open Frame ist eine Chrome-Erweiterung, die von ccrawford1250 entwickelt wurde, und ihr Hauptmerkmal ist "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Erweiterungsscreenshots

screenshot

Open Frame-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open Frame-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
Offizielle URL https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Beschreibung Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Dateigröße 10.83 KB
Installationsanzahl 4,616
Aktuelle Version 1.0
Letztes Update 2023-07-24
Veröffentlichungsdatum 2023-07-24
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler ccrawford1250
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}