Open Frame

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

Co to jest Open Frame?

Open Frame to rozszerzenie Chrome opracowane przez ccrawford1250, a jego główną funkcją jest „Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Open Frame

Pobierz pliki rozszerzeń Open Frame w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
Oficjalny URL https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Opis Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Rozmiar pliku 10.83 KB
Liczba instalacji 4,616
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-07-24
Data Publikacji 2023-07-24
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper ccrawford1250
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}