Open Frame

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

Open Frameとは何ですか?

Open Frameはccrawford1250によって開発されたChromeの拡張機能で、その主な機能は「Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.」です。

拡張機能のスクリーンショット

screenshot

Open Frame拡張機能のCRXファイルをダウンロード

Open Frame拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
公式URL https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
説明 Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
ファイルサイズ 10.83 KB
インストール数 4,616
現在のバージョン 1.0
最終更新日 2023-07-24
公開日 2023-07-24
評価 5.00/5 合計 8 レビュー
開発者 ccrawford1250
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}