Open Frame

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

Cos'è Open Frame?

Open Frame è un'estensione di Chrome sviluppata da ccrawford1250, e la sua funzione principale è "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Open Frame

Scarica i file di estensione Open Frame in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
URL Ufficiale https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Descrizione Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Dimensione del File 10.83 KB
Conteggio Installazioni 4,616
Versione Corrente 1.0
Ultimo Aggiornamento 2023-07-24
Data di Pubblicazione 2023-07-24
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore ccrawford1250
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}