Open Frame

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

Apa itu Open Frame?

Open Frame adalah ekstensi Chrome yang dikembangkan oleh ccrawford1250, dan fitur utamanya adalah "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Open Frame

Unduh file ekstensi Open Frame dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
URL Resmi https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Deskripsi Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Ukuran File 10.83 KB
Jumlah Instalasi 4,616
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-07-24
Tanggal Publikasi 2023-07-24
Penilaian 5.00/5 Total 8 Penilaian
Pengembang ccrawford1250
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}