Open Frame

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

Vad är Open Frame?

Open Frame är en Chrome-tillägg utvecklad av ccrawford1250, och dess huvudfunktion är "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Tilläggsskärmbilder

screenshot

Ladda ner Open Frame-förlängningens CRX-fil

Ladda ner Open Frame-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
Officiell webbadress https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Beskrivning Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Filstorlek 10.83 KB
Antal Installationer 4,616
Aktuell Version 1.0
Senast Uppdaterad 2023-07-24
Publiceringsdatum 2023-07-24
Betyg 5.00/5 Totalt 8 Betyg
Utvecklare ccrawford1250
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}