Open Frame

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

Wat is Open Frame?

Open Frame is een Chrome-extensie ontwikkeld door ccrawford1250, en de belangrijkste functie is "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Open Frame

Download Open Frame-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
Officiële URL https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Beschrijving Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Bestandsgrootte 10.83 KB
Aantal Installaties 4,616
Huidige Versie 1.0
Laatst Bijgewerkt 2023-07-24
Publicatiedatum 2023-07-24
Beoordeling 5.00/5 Totaal 8 Beoordelingen
Ontwikkelaar ccrawford1250
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}