Open Frame

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

Qu'est-ce que Open Frame ?

Open Frame est une extension Chrome développée par ccrawford1250, et sa fonction principale est "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open Frame

Téléchargez les fichiers d'extension Open Frame au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
URL Officiel https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Description Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Taille du Fichier 10.83 KB
Nombre d'Installations 4,616
Version Actuelle 1.0
Dernière Mise à Jour 2023-07-24
Date de Publication 2023-07-24
Évaluation 5.00/5 Total 8 Évaluations
Développeur ccrawford1250
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}